我必须做什么,当我有DNS到子域名时,当有人去blog.example.com时,网站网址是相同的,但内容来自主页而不是来自博客文件夹。
我该怎么办?如果有的话,/ var / www / blog / in .htaccess中必须包含哪些内容?
请帮忙!
答案 0 :(得分:0)
您可以使用以下规则:
RewriteEngine On
#if host is blog.domain.com
RewriteCond %{HTTP_HOST} ^blog\.example\.com$
#then serve all requests from the Root folder.
RewriteRule ^(.*)$ /$1 [NC,L]
将 blog.example.com 替换为http_host字符串中的子域。