如何将我的所有网站链接重定向到除“ index.php”和某些其他文件之外的其他域

时间:2019-01-12 18:59:45

标签: apache .htaccess

如何将对我的站点的所有请求重定向到另一个域,除了文件/index.php和文件/members//Admins/

1 个答案:

答案 0 :(得分:0)

.htaccess顶部,使用mod_rewrite尝试以下操作:

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/(members|Admins)/
RewriteRule !^(index\.php)?$ https://other.example%{REQUEST_URI} [R,L]

这假设您的“其他域”(例如other.example)指向其他服务器。