标题:
呼叫:andy15703166版版 怎么设置企业二级域名呢?
[打印本页]
作者:
ucyo123
时间:
2012-8-11 21:35
标题:
呼叫:andy15703166版版 怎么设置企业二级域名呢?
本帖最后由 ucyo123 于 2012-8-11 22:00 编辑
我怎么设置企业二级域名不行呢?我DT后台设置的 根目录下和company都不行,这个WDos建一个网站文件不是放根目录下,是放在public_html目录下(有米方法直接放根目录下?),好像通过新建网站域名泛解析到company实现不了吧?
我看论坛说apache+nginx是用apache的伪静态规则,但是我加了apache的伪静态规则 就出现502,好像不用设伪静态规则,其他频道默认就可以伪静态,但是二级域名不知咋弄呢?还有企业商铺二级域名前加www也可以实现吧?求分享方法。
如果在WDCP里加二级域名好像不能绑定泛解析来的域名呢?
本地VM虚拟机里 通过 hosts 设的域名
作者:
andy15703166
时间:
2012-8-12 07:48
本帖最后由 andy15703166 于 2012-8-12 07:49 编辑
给你看一下我的配置文件吧:
我在WDCP后台以store(company)子目录新建了一个站点
下载
(24.97 KB)
2012-8-12 07:42
然后我的主站的apache配置文件内容为:
<VirtualHost *:88>
DocumentRoot /www/web/hcgw/public_html
ServerName hcgw.cn
ServerAlias www.hcgw.cn www.52hc.cn www.cn9888.com
ErrorDocument 400 /errpage/400.html
ErrorDocument 403 /errpage/403.html
ErrorDocument 404 /errpage/404.html
ErrorDocument 405 /errpage/405.html
php_admin_value open_basedir /www/web/hcgw:/tmp
<IfModule mod_deflate.c>
DeflateCompressionLevel 7
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
AddOutputFilter DEFLATE css js html htm gif jpg png bmp php
</IfModule>
</VirtualHost>
<Directory /www/web/hcgw/public_html>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
复制代码
我的主站的nginx配置文件为:
server {
listen 80;
server_name hcgw.cn www.hcgw.cn www.52hc.cn www.cn9888.com;
root /www/web/hcgw/public_html;
index index.html index.php index.htm;
error_page 400 /errpage/400.html;
error_page 403 /errpage/403.html;
error_page 404 /errpage/404.html;
error_page 405 /errpage/405.html;
location ~ \.php$ {
proxy_pass http://127.0.0.1:88;
include naproxy.conf;
}
location / {
try_files $uri @apache;
}
location @apache {
proxy_pass http://127.0.0.1:88;
include naproxy.conf;
}
}
复制代码
我的store(company)二级域名的站点apahce配置文件为
<VirtualHost *:88>
DocumentRoot /www/web/hcgw/public_html/store/
ServerName hcgw.cn
ServerAlias *.hcgw.cn
ErrorDocument 400 /errpage/400.html
ErrorDocument 403 /errpage/403.html
ErrorDocument 404 /errpage/404.html
ErrorDocument 405 /errpage/405.html
php_admin_value open_basedir /www/web/hcgw/public_html:/tmp
<IfModule mod_deflate.c>
DeflateCompressionLevel 7
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
AddOutputFilter DEFLATE css js html htm gif jpg png bmp php
</IfModule>
</VirtualHost>
<Directory /www/web/hcgw/public_html/>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
复制代码
我的store(company)二级域名的站点nginx配置文件为
server {
listen 80;
server_name *.hcgw.cn;
root /www/web/hcgw/public_html/store;
index index.html index.php index.htm;
error_page 400 /errpage/400.html;
error_page 403 /errpage/403.html;
error_page 404 /errpage/404.html;
error_page 405 /errpage/405.html;
location ~ \.php$ {
proxy_pass http://127.0.0.1:88;
include naproxy.conf;
}
location / {
try_files $uri @apache;
}
location @apache {
proxy_pass http://127.0.0.1:88;
include naproxy.conf;
}
}
复制代码
最后,其他关于公司频道绑定二级域名方法,参考这个设置:
会员绑定二级域名和顶级域名的方法
http://bbs.site4tong.com/forum.php?mod=viewthread&tid=1297&fromuid=1
apache伪静态规则一定要看这个:
DT4.0 apache下伪静态官方规则修正!
http://bbs.site4tong.com/forum.php?mod=viewthread&tid=1168&fromuid=1
图片附件:
1.jpg
(2012-8-12 07:42, 24.97 KB) / 下载次数 4959
http://wdlinux.cn/bbs/attachment.php?aid=1681&k=2a4df2a5df5816ec436bb77b2090758d&t=1732566245&sid=mNbint
作者:
vsxp
时间:
2012-10-5 15:19
不错,感谢分享。
欢迎光临 WDlinux官方论坛 (http://wdlinux.cn/bbs/)
Powered by Discuz! 7.2