主域名绑定子目录后怎么中转不带www的到www的域名上
|
|
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?m8v8.com$
RewriteCond %{REQUEST_URI} !^/m8v8.com/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /m8v8.com/$1
RewriteCond %{HTTP_HOST} ^(www.)?m8v8.com$
RewriteRule ^(/)?$ m8v8.com/index.html [L]
加了子目录的中转 不带www的中转怎么做呢? |
|
|
|
|
|
|
|
|
|
|
lpj
发表于 2011-9-7 09:02:34
|
显示全部楼层
增加以下两个记录,其他有关www记录删除
A记录 www points to IP地址
cname记录 @ points to www |
|
|
|
|
|
|
|
|
|
|
cbhjatarj
发表于 2011-9-7 19:23:14
|
显示全部楼层
原帖由 lpj 于 2011-9-7 09:02 AM 发表 
增加以下两个记录,其他有关www记录删除
A记录 www points to IP地址
cname记录 @ points to www
我的是新网的域名管理 好象没有这个功能
|
|
|
|
|
|
|
|
|
|
|
lpj
发表于 2011-9-8 08:57:51
|
显示全部楼层
|
有的,A记录和cname(别名记录)。第二行和第三行 |
|
|
|
|
|
|
|
|