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

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

溫馨提示:信息不詳,很可能會(huì)沒人理你!論壇有教程說明的,也可能沒人理!因?yàn)?你懂的

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

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

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

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

給你看一下我的配置文件吧:
我在WDCP后臺(tái)以store(company)子目錄新建了一個(gè)站點(diǎn) 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>
復(fù)制代碼



我的主站的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. }
復(fù)制代碼



我的store(company)二級(jí)域名的站點(diǎn)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>     
復(fù)制代碼



我的store(company)二級(jí)域名的站點(diǎn)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. }     
復(fù)制代碼



最后,其他關(guān)于公司頻道綁定二級(jí)域名方法,參考這個(gè)設(shè)置:
會(huì)員綁定二級(jí)域名和頂級(jí)域名的方法
http://bbs.site4tong.com/forum.php?mod=viewthread&tid=1297&fromuid=1


apache偽靜態(tài)規(guī)則一定要看這個(gè):
DT4.0 apache下偽靜態(tài)官方規(guī)則修正!
http://bbs.site4tong.com/forum.php?mod=viewthread&tid=1168&fromuid=1
云建站
要省錢,上匯誠:匯誠網(wǎng)

TOP

不錯(cuò),感謝分享。
三打不溜

TOP

返回列表