jdk
01-29-2007, 04:31 PM
I am trying to take the following link:
http://www.sourarcade.com/play.php?gametitle=Amoebas&gameid=474
and turn it into the following:
http://www.sourarcade.com/play/Amoebas-474.html
I have the following in my .htaccess file
#start .htaccess code
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^gametitle\=([^&]+)\&gameid\=([^&]+)$
RewriteRule ^$ /play/%1-%2.html [R=301,L]
The following in my index.php to export the link:
echo "<a href='play/$getgames[gametitle]-$getgames[gameid].html'>$gametitle</a><br>";
For some reason it does not work correctly. I get a page not found when I try to access http://www.sourarcade.com/play/Amoebas-474.html
Any help would be appreciated. If you need FTP access, it can be provided. I am willing to compensate someone who can get this working properly.
Thanks
http://www.sourarcade.com/play.php?gametitle=Amoebas&gameid=474
and turn it into the following:
http://www.sourarcade.com/play/Amoebas-474.html
I have the following in my .htaccess file
#start .htaccess code
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} ^gametitle\=([^&]+)\&gameid\=([^&]+)$
RewriteRule ^$ /play/%1-%2.html [R=301,L]
The following in my index.php to export the link:
echo "<a href='play/$getgames[gametitle]-$getgames[gameid].html'>$gametitle</a><br>";
For some reason it does not work correctly. I get a page not found when I try to access http://www.sourarcade.com/play/Amoebas-474.html
Any help would be appreciated. If you need FTP access, it can be provided. I am willing to compensate someone who can get this working properly.
Thanks
