I have the following rewrite rule:
RewriteEngine on
RewriteRule ^([^/]+)/?$ parser.php?id=$1 [QSA,L]
The issue is that when I try to access my homepage by www.site.com, it rewrites it as well to parser.php, why is this and how do I prevent this?
|
I have the following rewrite rule:
The issue is that when I try to access my homepage by www.site.com, it rewrites it as well to parser.php, why is this and how do I prevent this?
| |||||
feedback
|
|
Exempt the root from the rewrite:
| |||||||||||
feedback
|