Board logo

标题: 呼叫: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)子目录新建了一个站点 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

图片附件: 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