I found some question about url rewriting:
.htaccess: Problem with URL rewriting or
.htaccess question – URL-rewriting
i tried their method but doesnt work in my case?
mine look simple:
http://example.org.uk/member/home.php?profile --> http://example.org.uk/member/home/profile/
http://example.org.uk/member/home.php?history --> http://example.org.uk/member/home/history/
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^home/([0-9][0-9])/$ /home.php?$1
RewriteRule ^/([^/]+).php$ /home.php?$1 [L]
any thougt is appricated? thanks
Your making it a bit complicated, the following should work
or more generally