首页 > 解决方案 > htaccess - 将所有内容重定向到 index.php,文件夹和特定文件除外

问题描述

我已经和这个斗争了太久了。我的 PHP 站点托管了一个 .htaccess 文件,用于重写和重定向。到目前为止,它一直运行良好。现在我只想添加一个子文件夹,/pp它里面的所有东西都不会被重定向或重写,基本上它不应该被我的 .htaccess 东西触及。

现在,当我转到 mysite.com/pp/test.php(该文件确实存在)时,它会重定向到 mysite.com/index

这是我目前拥有的:

RewriteEngine On

#remove www for all traffic
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

#prevent redirect of submit
RewriteRule ^/?submit$ submit.php [L]

#prevent redirect of paypal
RewriteRule ^/?admin$ admin.php [L]
RewriteRule ^/?testPPButton$ testPPButton.php [L]

# browser requests PHP
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^\ ]+)\.php
RewriteRule ^/?(.*)\.php$ /$1 [L,R=301]

# check to see if the request is for a PHP file:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/pp/.* [NC]  // this line is not working for some reason
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

Options -Indexes

更新.htaccess:

    RewriteEngine On

# skip /pp/* from all rules below
RewriteRule ^pp(/.*)?$ - [L,NC]

#remove www for all traffic
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

#prevent redirect of submit
RewriteRule ^/?submit$ submit.php [L]

#prevent redirect of paypal
RewriteRule ^/?admin$ admin.php [L]
RewriteRule ^/?testPPButton$ testPPButton.php [L]

# browser requests PHP
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^\ ]+)\.php
RewriteRule ^/?(.*)\.php$ /$1 [L,R=301]

# check to see if the request is for a PHP file:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

Options -Indexes

标签: apache.htaccess

解决方案


就在下面RewriteEngine On的行添加这个跳过pp/和这个文件夹下的所有内容:

RewriteEngine On

# skip /pp/* from all rules below
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\s/+pp[/?\s] [NC]
RewriteRule ^ - [L,NC]

# rest of your rules go below this

推荐阅读