SEO URL issue

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
gauravtechie
Forum Newbie
Posts: 1
Joined: Sat Aug 23, 2008 1:01 pm

SEO URL issue

Post by gauravtechie »

Hi,


I have a SEO URL issue , I have made a arcade script at http://www.hostcurry.com/tdemon/one , I have used mod rewrite in it.


Now http://hostcurry.com/tdemon/one/1-2/Act ... ture/Alien has a game which give high score url to http://hostcurry.com/tdemon/one/index.php , But on completion of game it sends score to http://hostcurry.com/tdemon/one/1-2/Act ... /index.php , Were "1-2/Action__&__Adventure/Alien" is the mod rewrite part, How should i go towards modifying .htaccess

here is my .htaccess

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)-(.*)/(.*)/(.*)$ /tdemon/one/index.php?play=$2 [L]
RewriteRule ^([0-10000])/$ /tdemon/one/category.php?id=$1 [L]
RewriteRule ^cat_id_(.*)-start_(.*)-pagesize_(.*)$ /tdemon/one/category.php?id=$1&start=$2&pagesize=$3 [L]
Reply With Quote
Post Reply