fastcgi - Tanya tentang masalah konfigurasi direktori sekunder nginx
黄舟
黄舟 2017-05-16 17:26:07
0
2
986
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;
    }

Konfigurasi adalah seperti di atas,

Program ini ialah esoTalk, dan fail terletak di /home/www/esotalk/ ,

Fail pemasangan sudah masuk. Apabila mengakses /bbs, ia sepatutnya melompat ke /bbs/?p=install/info, tetapi ia melompat ke /?p=install/info,

Mencari penyelesaian, terima kasih.

黄舟
黄舟

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

membalas semua(2)
Ty80

Kalau tak salah ingat, sepatutnya macam ni

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;
    }
}

Hanya gunakan nama_server untuk mengenal pasti nama domain peringkat kedua yang berbeza.
lokasi ~ ..php(/.)*$ {
# Peraturan lokasi ini adalah untuk typecho.
}

Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan