HTACCESS重定向除两个文件以外的所有域

时间:2013-09-23 16:13:12

标签: regex .htaccess mod-rewrite

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

这是我的htaccess

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

1 个答案:

答案 0 :(得分:15)

使用此规则:

RewriteEngine On
Rewritecond %{http_host} ^olddomain\.org [NC]
RewriteCond %{REQUEST_URI} !/(protectetfile1|protectetfile2)\.php [NC]
Rewriterule ^(.*)$ http://newdomain.net/$1 [L,R=301]