I need to rewrite this urls
http://www.website.com/game/newscore.php
http://www.website.com/game/index.php?act=Arcade&do=newscore
http://www.website.com/game/index.php?act=Arcade&do=savescore
all in one to
http://www.website.com/savescore
and
http://www.website.com/game/index.php?act=Arcade&do=verifyscore
in
http://www.website.com/game/verifyscore
This is my current .htaccess file
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
Anyone can help me please?
Thx all.
1 Answer