On Sat, Aug 1, 2009 at 2:11 AM, A.a.k<blue...@gmail.com> wrote:
> Hi
> I'm trying to use clean urls in my application:
> lets say convert http://mysite/article.php?id=3   to
> http://mysite/article/3/
> my problem is to use /article act as it was /article.php
> here is mt .htacess :
> <FilesMatch "^article$">
> ForceType application/x-httpd-php
> </FilesMatch>
> on php code parsing string from $_SERVER['PHP_SELF'] to get id out.
>
> this one works if i use article.php (http://mysite/article.php/3/ works)
> but i want to use /article without php extention. is there a way around?
>

Look up mod_rewrite.

Andrew

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to