2

我的网站和 nginx 服务器有问题.....从我的 url 地址中删除 .php 后,我在每个图像和 css 文件 404 上都有错误。

这是我的整个配置文件:

server {
        listen 80;
        server_name example.com;
        return 301 $scheme://www.example.com$request_uri;       
}

server {
        listen   80;
        root /usr/share/nginx/www;
        index index.php;
        server_name www.example.com;
        error_page 404 http://www.example.com/404.php;
        autoindex off;
        error_log  /usr/share/nginx/www/nginx_error.log  warn;

   location / {
        rewrite ^(.*)$ /$1.php;
    }

    location = / {
        rewrite ^ /index.php;
    }

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
    }

}

谢谢大家的意见!!问候 Makromat

4

1 回答 1

2

尝试将php重写限制为仅不带扩展名的 URI:

rewrite ^([^\.]*)$ /$1.php;

或者,您可以通过在第一个location /块之前添加此块来完全排除图像:

location ~ \.(css|js|png|jpe?g|gif) { 
    # empty
}
于 2013-11-14T18:49:58.843 回答