将所有内容重定向到除特定文件夹和子域之外的另一个网址

发布于 2024-11-02 01:37:17 字数 260 浏览 0 评论 0原文

目前,我的 htaccess 将所有内容重定向到另一个 URL,除非它位于论坛文件夹中...

RewriteEngine On
RewriteCond %{REQUEST_URI} !/Forum
RewriteRule ^.*$ http://www.newsite.com/ [R=301]

我已经在原始站点中设置了一个子域,使用一个名为 subdomain 的文件夹。

我想做的是保留现有的重定向,并防止子域的重定向

presently I have my htaccess redirecting everything to another URL, unless it is in the forums folder...

RewriteEngine On
RewriteCond %{REQUEST_URI} !/Forum
RewriteRule ^.*$ http://www.newsite.com/ [R=301]

I have set up a sub-domain in my original site, using a folder called subdomain.

what I would like to do is retain my existing redirect, and prevent redirects of my subdomain

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三生殊途 2024-11-09 01:37:17

您应该能够将 !/Forum 条件与新条件组合起来,如下所示:

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/(Forum|subdomain)
RewriteRule ^.*$ http://www.newsite.com/ [R=301]

它使用将匹配“/Forum”“/subdomain”的正则表达式。

You should be able to combine your !/Forum condition with a new one, as follows:

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/(Forum|subdomain)
RewriteRule ^.*$ http://www.newsite.com/ [R=301]

That uses a regular expression which will match either "/Forum" or "/subdomain".

饭团 2024-11-09 01:37:17

如果我理解您的要求,以下规则应该适合您:

RewriteEngine on
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteCond %{HTTP_HOST} !^/subdomain\. [NC]
RewriteCond %{REQUEST_URI} !^/Forum [NC]
RewriteRule ^.*$ http://www.newsite.com/ [R=301,L]

R=301 将使用 https 状态 301 进行重定向

L 将制定最后一条规则

NC 用于忽略(无)大小写比较

If I understood your requirement following rules should work for you:

RewriteEngine on
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteCond %{HTTP_HOST} !^/subdomain\. [NC]
RewriteCond %{REQUEST_URI} !^/Forum [NC]
RewriteRule ^.*$ http://www.newsite.com/ [R=301,L]

R=301 will redirect with https status 301

L will make last rule

NC is for ignore (no) case comparison

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文