我已要求我的域名託管服務商將網站指向我的public_html文件夾。但現在我被告知,如果我需要這個其他域重定向到我的主域網站上的特定網址,我需要在htaccess文件中執行此操作。目前我已經研究過,這是我的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網站頁面。
你需要在'otherdomain.org.uk'服務器的'DocumentRoot'文件夾重定向規則。 – anubhava 2014-09-19 19:03:01
otherdomain.org.uk指向primarydomain.org的htaccess文件所在的同一個public_html文件夾。目前otherdomain.org.uk重定向到primarydomain.org,但不是primarydomain.org/blog/ – user3214892 2014-09-19 19:11:22
請不要這是一個WordPress的頁面,所以URL並不真實反映在文檔文件夾 – user3214892 2014-09-19 19:21:58