co.in 和 co.uk 的 www 重定向

发布于 2024-11-24 17:19:38 字数 1459 浏览 3 评论 0原文

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

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

发布评论

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

评论(3

冰魂雪魄 2024-12-01 17:19:38

仅重写此域:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.domain\.co\.in$ [NC]
RewriteRule ^(.*)$ http://www.domain.co.in$1 [L,R,QSA]

要在一条规则中重写多个域:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}$1  [L,R,QSA]

To rewrite just this domain:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.domain\.co\.in$ [NC]
RewriteRule ^(.*)$ http://www.domain.co.in$1 [L,R,QSA]

To rewrite for multiple domains in one rule:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}$1  [L,R,QSA]
本宫微胖 2024-12-01 17:19:38

在网络根目录中创建一个 .htaccess,

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.co.in [nc]
RewriteRule ^(.*)$  http://www.domain.co.in/$1 [R=301,L]

create a .htaccess in the web root,

Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain.co.in [nc]
RewriteRule ^(.*)$  http://www.domain.co.in/$1 [R=301,L]
病女 2024-12-01 17:19:38

您不需要修改复杂的重写来做到这一点,最基本的配置将更好地完成工作(更简单=更好)。

创建一个虚拟主机,其中包含要重定向的所有域(一个位于 ServerName 中,其他位于 ServerAlias 中)。在其中使用 Redirect 到正确的位置,您只使用一个 ServerName。

<VirtualHost *:80 />
   # catch all DNS to be redirected here
   ServerName redirect.domain.co.in
   ServerAlias domain.co.in
   ServerAlias domain.org
   ServerAlias domain_co_in.com

   Redirect permanent / http://www.domain.co.in/
</VirtualHost>

<VirtualHost *:80 />
    # The real VH with only one name
    ServerName www.domain.co.in
    (...)
</VirtualHost>

You do not need mod-rewrite complexity to do that, the most basic configuration will do the job better (simplier=better).

Make one Virtualhost, containing all domains to be redirected (one in ServerName the others in ServerAlias). Inside it use Redirect to the right one, where you use only one ServerName.

<VirtualHost *:80 />
   # catch all DNS to be redirected here
   ServerName redirect.domain.co.in
   ServerAlias domain.co.in
   ServerAlias domain.org
   ServerAlias domain_co_in.com

   Redirect permanent / http://www.domain.co.in/
</VirtualHost>

<VirtualHost *:80 />
    # The real VH with only one name
    ServerName www.domain.co.in
    (...)
</VirtualHost>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文