四虎影视在线影院在线观看,小s货再浪些再咬紧点h,国产精品水嫩水嫩,97精产国品一二三产区

Board logo

標題: [教程] nginx 301轉(zhuǎn)向+nginx偽靜態(tài)設置教程 [打印本頁]

作者: bluegua    時間: 2011-11-17 01:20     標題: nginx 301轉(zhuǎn)向+nginx偽靜態(tài)設置教程

本帖最后由 bluegua 于 2011-11-18 16:10 編輯




以下教程都是把baidu.com替換成你的域名

  1. server {
  2. listen 80;
  3. server_name www.baidu.com;
  4. root /www/web/baidu/public_html;
  5. index index.html index.php index.htm;
  6. error_page 404 /errpage/404.html;
  7. location ~ \.php$ {
  8. fastcgi_pass 127.0.0.1:9000;
  9. fastcgi_index index.php;
  10. include fcgi.conf;
  11. }
  12. location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
  13. expires 1d;
  14. }
  15. location ~ .*\.(js|css)?$ {
  16. expires 12h;
  17. }
  18. include rewrite/dzx15_nginx.conf;
  19. //偽靜態(tài)文件,放在nginx的rewrite目錄里,二級域名也是這樣設置的
  20. }
  21. //以下是301轉(zhuǎn)向設置
  22. server {
  23. server_name baidu.com;
  24. rewrite ^/(.*)$ http://www.baidu.com$1 permanent;
  25. }
復制代碼

作者: 山魈    時間: 2011-11-17 16:39

初學者,怎么沒用?一行一行輸入運行?
作者: bluegua    時間: 2011-11-17 22:31

回復 2# 山魈

修改你相關域名配置文件
作者: jckai2008    時間: 2012-1-13 16:55

版主,是修改網(wǎng)站根目錄下的.htacccess文件嗎?
作者: 泥蛋    時間: 2012-3-10 16:47

學習哦,樓上的,不是修改.htacccess文件吧
作者: happyboy    時間: 2013-3-25 17:13

學習咯。。。




歡迎光臨 WDlinux官方論壇 (http://cd-genova.com/bbs/) Powered by Discuz! 7.2