云服务器支持子目录吗?
Re云服务器支持子目录吗?
server {
listen 80 default;
server_name localhost;
location / {
index index.php index.html ;
root /home/default/web/zone;
// 根目录 是这个/home/default/web,访问一直都是在根目录,进不了zone文件夹中的index.php 文件
location ~ .*\.(php|php5)?$
{
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
}
}
-------------------------
回4楼cn0555的帖子
你们的nginx 配置是怎么样的?
-------------------------
回10楼vpsmm的帖子
这个我懂,还是不可以...
赞0
踩0