7

我的实际 htaccess 将我的完整旧站点重定向到我的新站点,我想重定向所有域,但除了两个文件 .php(protectetfile1.php 和 protectedfile2.php)。

这是我的 htaccess

RewriteEngine On
Rewritecond %{http_host} ^olddomain.org [NC]
Rewriterule ^(.*)$ http://newdomain.net/$1 [L,R=301]
4

1 回答 1

15

Use this rule:

RewriteEngine On
Rewritecond %{http_host} ^olddomain\.org [NC]
RewriteCond %{REQUEST_URI} !/(protectetfile1|protectetfile2)\.php [NC]
Rewriterule ^(.*)$ http://newdomain.net/$1 [L,R=301]
于 2013-09-23T16:19:21.417 回答