前端之家收集整理的这篇文章主要介绍了
正则表达式 – HTACCESS重定向除两个文件以外的所有域,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的实际htaccess将我的完整旧
站点重定向到我的新
站点,我想
重定向所有域,但除了两个
文件.
PHP(protectetfile1.
PHP和protectedfile2.
PHP).
这是我的htaccess
RewriteEngine On
Rewritecond %{http_host} ^olddomain.org [NC]
Rewriterule ^(.*)$http://newdomain.net/$1 [L,R=301]
使用此规则:
RewriteEngine On
Rewritecond %{http_host} ^olddomain\.org [NC]
RewriteCond %{REQUEST_URI} !/(protectetfile1|protectetfile2)\.PHP [NC]
Rewriterule ^(.*)$http://newdomain.net/$1 [L,R=301]
原文链接:https://www.f2er.com/regex/356738.html