无标题文档
wdCP系统 (介绍,功能特性,运行环境,安装说明,演示,常见问题,使用教程) wdCDN系统 (介绍,功能特性,运行环境,安装说明,演示,常见问题,使用手册)
wdOS系统 (介绍,功能特性,运行环境,安装说明,演示,常见问题,使用教程) wdDNS系统 (介绍,功能特性,运行环境,安装说明,演示,常见问题,使用手册)
注册 发贴 提问 回复-必看必看 wddns免费智能 DNS 开通 本地或虚拟机使 用wdcp 一键包在mysql编 译时"卡住"
【300G高防】双线 无视攻击 wdcp官方技术支持/服务 阿里云8折优惠券 无敌云 腾讯云优惠中,现注册更有260代金额券赠送
返回列表 发帖
提问三步曲: 提问先看教程/FAQ索引(wdcp,wdcp_v3,一键包)及搜索,会让你更快解决问题
1 提供详细,如系统版本,wdcp版本,软件版本等及错误的详细信息,贴上论坛或截图发论坛
2 做过哪些操作或改动设置等

温馨提示:信息不详,很可能会没人理你!论坛有教程说明的,也可能没人理!因为,你懂的

呼叫: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:49 编辑

给你看一下我的配置文件吧:
我在WDCP后台以store(company)子目录新建了一个站点 1.jpg


然后我的主站的apache配置文件内容为:
  1. <VirtualHost *:88>
  2. DocumentRoot /www/web/hcgw/public_html
  3. ServerName hcgw.cn
  4. ServerAlias www.hcgw.cn www.52hc.cn www.cn9888.com
  5. ErrorDocument 400 /errpage/400.html
  6. ErrorDocument 403 /errpage/403.html
  7. ErrorDocument 404 /errpage/404.html
  8. ErrorDocument 405 /errpage/405.html
  9. php_admin_value open_basedir /www/web/hcgw:/tmp
  10. <IfModule mod_deflate.c>
  11. DeflateCompressionLevel 7
  12. AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
  13. AddOutputFilter DEFLATE css js html htm gif jpg png bmp php
  14. </IfModule>
  15. </VirtualHost>
  16. <Directory /www/web/hcgw/public_html>
  17.     Options FollowSymLinks
  18.     AllowOverride All
  19.     Order allow,deny
  20.     Allow from all
  21. </Directory>
复制代码



我的主站的nginx配置文件为:
  1. server {
  2.         listen       80;
  3.         server_name hcgw.cn www.hcgw.cn www.52hc.cn www.cn9888.com;
  4.         root /www/web/hcgw/public_html;
  5.         index  index.html index.php index.htm;
  6.         error_page  400 /errpage/400.html;
  7.         error_page  403 /errpage/403.html;
  8.         error_page  404 /errpage/404.html;
  9.         error_page  405 /errpage/405.html;
  10.         location ~ \.php$ {
  11.                 proxy_pass http://127.0.0.1:88;
  12.                 include naproxy.conf;
  13.         }
  14.         location / {
  15.                 try_files $uri @apache;
  16.         }
  17.         location @apache {
  18.                  proxy_pass http://127.0.0.1:88;
  19.                  include naproxy.conf;
  20.         }
  21. }
复制代码



我的store(company)二级域名的站点apahce配置文件为
  1. <VirtualHost *:88>
  2. DocumentRoot /www/web/hcgw/public_html/store/
  3. ServerName hcgw.cn
  4. ServerAlias *.hcgw.cn
  5. ErrorDocument 400 /errpage/400.html
  6. ErrorDocument 403 /errpage/403.html
  7. ErrorDocument 404 /errpage/404.html
  8. ErrorDocument 405 /errpage/405.html
  9. php_admin_value open_basedir /www/web/hcgw/public_html:/tmp
  10. <IfModule mod_deflate.c>
  11. DeflateCompressionLevel 7
  12. AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
  13. AddOutputFilter DEFLATE css js html htm gif jpg png bmp php
  14. </IfModule>
  15. </VirtualHost>
  16. <Directory /www/web/hcgw/public_html/>
  17.     Options FollowSymLinks
  18.     AllowOverride All
  19.     Order allow,deny
  20.     Allow from all
  21. </Directory>     
复制代码



我的store(company)二级域名的站点nginx配置文件为
  1. server {
  2.         listen       80;
  3.         server_name *.hcgw.cn;
  4.         root /www/web/hcgw/public_html/store;
  5.         index  index.html index.php index.htm;
  6.         error_page  400 /errpage/400.html;
  7.         error_page  403 /errpage/403.html;
  8.         error_page  404 /errpage/404.html;
  9.         error_page  405 /errpage/405.html;
  10.         location ~ \.php$ {
  11.                 proxy_pass http://127.0.0.1:88;
  12.                 include naproxy.conf;
  13.         }
  14.         location / {
  15.                 try_files $uri @apache;
  16.         }
  17.         location @apache {
  18.                  proxy_pass http://127.0.0.1:88;
  19.                  include naproxy.conf;
  20.         }
  21. }     
复制代码



最后,其他关于公司频道绑定二级域名方法,参考这个设置:
会员绑定二级域名和顶级域名的方法
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
云建站
要省钱,上汇诚:汇诚网

TOP

不错,感谢分享。
三打不溜

TOP

返回列表