1

nginx をサーバーとしてインストールした vps で yii アプリケーションを実行しようとしました。しかし、自分のドメイン www.domain.com にアクセスすると、ページは正常に表示されますが、常に 1 つのリンクにアクセスすると 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 に答える