How to exclude a specific file in htaccess

后端 未结 2 1882
一生所求
一生所求 2021-01-16 21:00

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

2条回答
  •  耶瑟儿~
    2021-01-16 21:23

    You could use the following code, to exclude all existing files (like index.php):

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^([a-zA-Z_-]+).php$ http://www.domain.com/myfile.php?page=inc-$1.php [NC]
    

    or to exclude only index.php you can use:

    RewriteCond %{REQUEST_URI} !^(.*/)?index\.php$ [NC]
    RewriteRule ^([a-zA-Z_-]+).php$ http://www.domain.com/myfile.php?page=inc-$1.php [NC]
    

提交回复
热议问题