|
I am currently using a URL rewrite for a script that I made.
The regular URL is search.php?page=page-name
The URL I am using is:
search/page/page-name
I am removing the PHP with this rewrite:
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.[^/]*)/page/(.[^/]*) $1.php?page=$2
So, it is possible. I was just hoping that you'd be able to do it with your scipts to make them more (proper) search engine friendly.
|