Howdy,
I know this's not the first mod_rewrite thread, but I hope I can find the answer here :o
I have a game script running on server and I need to change the dynamic url to SEF.
placed this code:
Options +FollowSymLinks
RewriteEngine on
RewriteRule game/(.*)/(.*)/$ /games/game.php?$1=$2
in the .htaccess file, but it didn't work :mad:
The dynamic url is: http://www.mysite.com/games/game.php?gameid=27
and I want it to look like:
http://www.mysite.com/games/game/27/ or
http://www.mysite.com/games/game/27.html
Is there a way this can be done?
Thanks alot.