I wrotea script that has structure like www.xxx.com/index.php?method=paypal I want this to work with www.xxx.com/paypal www.xxx.com/paypal/ www.xxx.com/index.php?method=paypal&category=shopping and this one www.xxx.com/paypal/shopping www.xxx.com/paypal/shopping/ Problem is "/" when i don't put this i have problem . Can someone write .htaccess for this? Thanks
Just have 2 rewrite rules : RewriteRule ^paypal/ and RewriteRule ^paypal That will do the trick, although this is a quick and dirty solution, I am sure there is a better one
Options +FollowSymLinks RewriteEngine on RewriteRule paypal/(.*) index.php?method=$1 Put this To you .htaccess Files