htaccess外部域到新域

时间:2014-09-19 18:35:45

标签: wordpress .htaccess redirect

我已经要求我的域名托管服务提供商将网站指向我的public_html文件夹。但现在我被告知如果我需要这个其他域重定向到我的主域网站上的特定网址,我需要在htaccess文件中执行此操作。目前我已经研究过,这就是我的htaccess没有运气的样子!

# Switch rewrite engine off in case this was installed under HostPay.
RewriteEngine Off

SetEnv DEFAULT_PHP_VERSION 5

DirectoryIndex index.cgi index.php

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

RewriteCond %{HTTP_HOST} ^otherdomain.org.uk
RewriteRule ^(.*)$ http://www.primarydomain.org/blog/$1 [R=permanent,L]

以上内容并未将我的otherdomain.org.uk重定向到我的primarydomain.org/blog上的博客页面。请注意,我的primarydomain.org/blog是一个wordpress网站页面。

1 个答案:

答案 0 :(得分:1)

在WP规则之前保留重定向规则。

你的规则如下:

# Switch rewrite engine off in case this was installed under HostPay.
RewriteEngine Off

SetEnv DEFAULT_PHP_VERSION 5

DirectoryIndex index.cgi index.php

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_HOST} ^otherdomain.org.uk
RewriteRule ^(.*)$ http://www.primarydomain.org/blog/$1 [R=permanent,L]

RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress