Diskuz saya diletakkan dalam direktori peringkat kedua bbs, dan direktori peringkat pertama mengandungi program wordpress mu adalah seperti berikut:
log_format vfcai.com '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
server
{
listen 80;
server_name vfcai.com *.vfcai.com;
index index.html index.htm index.php default.html default.htm default.php;
root /data/wwwroot/vfcai.com;
include wordpress.conf;
location ~ .*\.(php|php5)?$
{
try_files $uri =404;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
access_log /home/wwwlogs/vfcai.com.log vfcai.com;
}
server
{
server_name www.vfcai.com;
rewrite ^(.*) http://vfcai.com/ permanent;
}
server
{
server_name bbs.vfcai.com;
index index.htm index.html index.php;
root /data/wwwroot/vfcai.com/bbs/;
location ~ .*\.(php|php5)?$
{
try_files $uri =404;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_NAME /bbs/$fastcgi_script_name;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
}
Apabila saya mengakses laman web saya melalui bbs.vfcai.com, muat turun index.php akan muncul, dan saya tidak boleh mengakses tapak web seperti biasa Apakah yang salah dengan konfigurasi nginx saya?
Konfigurasi bbs.vfcai.com anda adalah salah sama sekali Anda belum mengkonfigurasi fastcgi, jadi anda pasti akan memuat turun fail tersebut!
Adalah disyorkan untuk membaca semula kaedah konfigurasi nginx dan belajar daripada asas dan bukannya menyalin konfigurasi dalam talian. Lawati bbs.vfcai.com, dasar konfigurasi lokasi pertama pelayan pertama akan bertindak balas, yang tidak dapat mencapai respons yang anda mahu dasar dikonfigurasikan pada pelayan ketiga.