如何将子域根映射到域文件夹

时间:2013-11-15 10:46:14

标签: wordpress .htaccess subdomain

我有一个subdomian设置,我想指向一个特定的目录。

cdn.domain.com

我希望cdn.domain.com指向domain.com/wp-content/,但不能指向重定向,因为它只显示cdn.domain.com/wp-content/

我想设置域根目录,这样当我写cdn.domain.com时,它会显示位于domain.com/wp-content/的文件。

有没有人知道如何做到这一点?

1 个答案:

答案 0 :(得分:0)

我设法通过.htaccess文件中的以下代码完成我想要完成的任务。 :)

# Rewrite all requests for wp-content from cdn, so they are fetched from the right place
RewriteCond %{HTTP_HOST} ^cdn\.responseretail\.no

# Prevent an endless loop frm ever happening

RewriteCond %{REQUEST_URI} !^/wp-content
RewriteRule (.+) /wp-content/$1 [L]

# Redirect http://cdn.domian.com/ to the main page (in case a user tries it)
RewriteCond %{HTTP_HOST} ^cdn\.domain\.com
RewriteRule ^$ http://www.domain.com/ [R=301,L]