Forum Moderators: phranque
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*)\.html$ /index.php?page=$1
So that will produce www.domain.com/url.html
Now I want to add this...
RewriteRule ^buy/([^\/]+)$ /index.php?page=buy&catname=$1
RewriteRule ^buy/([^\/]+)/$ /index.php?page=buy&catname=$1
So that will produce www.domain.com/buy/something
BUT when I combine everything in one .htaccess file I'm getting an infinite loop on my website...
Any idea how to fix this? Any help will be greatly appreciated.
Thanks
Options +FollowSymLinks
RewriteEngine on
#
RewriteRule ^([^.]+)\.html$ /index.php?page=$1 [L]
#
RewriteRule ^buy/([^/]+)/?$ /index.php?page=buy&catname=$1 [L]