fastcgi - 請教一個nginx的二級目錄配置問題
黄舟
黄舟 2017-05-16 17:26:07
0
2
1006
location ~ ^/bbs/.+\.php$ {
        alias   /home/www/esotalk/;
        rewrite /bbs/(.*\.php?) / break;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /home/www/esotalk$fastcgi_script_name;
        include        fastcgi_params;
    }
    location ~ ^/bbs($|/.*) {
        alias   /home/www/esotalk/;
        index   index.php index.html;
    }

配置如上,

程式為 esoTalk,檔案放在 /home/www/esotalk/ ,

擺安裝檔進去了,當訪問 /bbs 時,本來應該跳轉去 /bbs/?p=install/info 的,但是跳轉成了 /?p=install/info ,

求解決方法,謝謝。

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

全部回覆(2)
Ty80

如果沒記錯的話,應該是這樣

location ~ ^/bbs/.+\.php$ {
    alias   /home/www/esotalk/;
    rewrite /bbs/(.*\.php?) /bbs/ break;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  /home/www/esotalk$fastcgi_script_name;
    include        fastcgi_params;
}
location ~ ^/bbs($|/.*) {
    alias   /home/www/esotalk/;
    index   index.php index.html;
}
大家讲道理
# Achais个人博客
server {
    listen 80;
    server_name achais.com www.achais.com;
    root /a/apps/default/achais;
    index index.php index.html index.htm;

    # PHP 脚本请求全部转发到 FastCGI处理. 使用FastCGI默认配置.
    location ~ .*\.php(\/.*)*$ {
        fastcgi_pass 127.0.0.1:9000;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        access_log     /a/apps/nginx/logs/achais/main.access.log main;
    }
}

server {
    listen 80;
    server_name me.990t.cn;
    root /a/apps/default/achais;
    index index.php index.html index.htm;

    # PHP 脚本请求全部转发到 FastCGI处理. 使用FastCGI默认配置.
    location ~ .*\.php(\/.*)*$ {
        fastcgi_pass 127.0.0.1:9000;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        access_log     /a/apps/nginx/logs/achais/main.access.log main;
    }
}

不同的二級網域用server_name辨別就行了.
location ~ ..php(/.)*$ {
# 這個location規則是針對 typecho 的.
}

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板