Hello everybody, I have joined this forum today.
I need help on this issue:
with htaccess mod rewrite I need to change the following addresses (corresponding to the same web site page originated by a CMS software):
www.site.com/bin/index.php?id=1200
www.site.com/bin/index.php?id=page-name
into
www.site.com/bin/page-name.html
In htaccess I have wrote the following:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{QUERY_STRING} ^id=1200$ [OR]
RewriteCond %{QUERY_STRING} ^id=page-name$
RewriteRule ^bin/index.php$ [
site.com...] [L,R=301]
Unfortunately I get Error 310 (net::ERR_TOO_MANY_REDIRECTS) too many redirects
Appreciate for the help