永久黄网站色视频免费直播,yy6080三理论日本中文,亚洲无码免费在线观看视频,欧美日韩精品一区二区在线播放

無標題文檔
wdCP系統(tǒng) (介紹,功能特性,運行環(huán)境,安裝說明,演示,常見問題,使用教程) wdCDN系統(tǒng) (介紹,功能特性,運行環(huán)境,安裝說明,演示,常見問題,使用手冊)
wdOS系統(tǒng) (介紹,功能特性,運行環(huán)境,安裝說明,演示,常見問題,使用教程) wdDNS系統(tǒng) (介紹,功能特性,運行環(huán)境,安裝說明,演示,常見問題,使用手冊)
注冊 發(fā)貼 提問 回復-必看必看 wddns免費智能 DNS 開通 本地或虛擬機使 用wdcp 一鍵包在mysql編 譯時"卡住"
AI導航網(wǎng)AI應用網(wǎng)站大全 wdcp官方技術支持/服務 阿里云8折優(yōu)惠券 無敵云 騰訊云優(yōu)惠中,現(xiàn)注冊更有260代金額券贈送
返回列表 發(fā)帖
提問三步曲: 提問先看教程/FAQ索引(wdcp,wdcp_v3,一鍵包)及搜索,會讓你更快解決問題
1 提供詳細,如系統(tǒng)版本,wdcp版本,軟件版本等及錯誤的詳細信息,貼上論壇或截圖發(fā)論壇
2 做過哪些操作或改動設置等

溫馨提示:信息不詳,很可能會沒人理你!論壇有教程說明的,也可能沒人理!因為,你懂的

呼叫:andy15703166版版 怎么設置企業(yè)二級域名呢?

本帖最后由 ucyo123 于 2012-8-11 22:00 編輯

我怎么設置企業(yè)二級域名不行呢?我DT后臺設置的 根目錄下和company都不行,這個WDos建一個網(wǎng)站文件不是放根目錄下,是放在public_html目錄下(有米方法直接放根目錄下?),好像通過新建網(wǎng)站域名泛解析到company實現(xiàn)不了吧?
我看論壇說apache+nginx是用apache的偽靜態(tài)規(guī)則,但是我加了apache的偽靜態(tài)規(guī)則 就出現(xiàn)502,好像不用設偽靜態(tài)規(guī)則,其他頻道默認就可以偽靜態(tài),但是二級域名不知咋弄呢?還有企業(yè)商鋪二級域名前加www也可以實現(xiàn)吧?求分享方法。
如果在WDCP里加二級域名好像不能綁定泛解析來的域名呢?
本地VM虛擬機里 通過 hosts 設的域名

本帖最后由 andy15703166 于 2012-8-12 07:49 編輯

給你看一下我的配置文件吧:
我在WDCP后臺以store(company)子目錄新建了一個站點 1.jpg


然后我的主站的apache配置文件內(nèi)容為:
  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偽靜態(tài)規(guī)則一定要看這個:
DT4.0 apache下偽靜態(tài)官方規(guī)則修正!
http://bbs.site4tong.com/forum.php?mod=viewthread&tid=1168&fromuid=1
云建站
要省錢,上匯誠:匯誠網(wǎng)

TOP

不錯,感謝分享。
三打不溜

TOP

返回列表