I have written below code in htaccess
RewriteRule ^([a-zA-Z_-]+).php$ http://www.domain.com/myfile.php?page=inc-$1.php [NC]
I don't want the index.php file to be rewritten - it should open normally.
I have written below code in htaccess
RewriteRule ^([a-zA-Z_-]+).php$ http://www.domain.com/myfile.php?page=inc-$1.php [NC]
I don't want the index.php file to be rewritten - it should open normally.
I think this is what you're asking:
To keep the index file from being redirected, you need a RewriteCond before the rule:
You could use the following code, to exclude all existing files (like index.php):
or to exclude only
index.php
you can use: