1

我尝试在我的 vps 上运行 yii 应用程序,它与 nginx 作为服务器一起安装。但是当我访问我的域:www.domain.com 时,页面看起来很好,但是如果始终访问一个链接,则会出现 404 未找到错误。我的 nginx 设置有问题吗?

我的 nginx 配置:

server {
listen       80;
server_name  www.mydomain.com;

   location / {
       root   /usr/share/nginx/html;
       index  index.php index.html index.htm;
   }

   error_page   500 502 503 504  /50x.html;
   location = /50x.html {
       root   /usr/share/nginx/html;
   }

    location ~ \.php$ {
       root           /usr/share/nginx/html;
       fastcgi_pass   127.0.0.1:9000;
       fastcgi_index  index.php;
       fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
       include        fastcgi_params;
   }

}
4

1 回答 1

1

在该行下方index添加此行

try_files $uri $uri/ /index.php$request_uri;
于 2013-08-10T20:16:39.520 回答