问题:Nginx 重写规则没有按预期工作

我有一个网站https://dev.mywebsite.com/index.php?album=portraits,它根据 POST 值动态显示相册。

我想将此 URL 重写为:https://dev.mywebsite.com/portraits

但是我的 Nginx 重写规则不起作用。当我输入https://dev.mywebsite.com/index.php?album=portraits时什么也没有发生。并且输入https://dev.mywebsite.com/portraits时没有找到页面。

我不知道我做错了什么。

这是我目前正在尝试使用的代码:

location / {
        rewrite ^/(.*)$ /album.php?album=$1 last;
}

我也试过这个:

location = /portraits { 
        rewrite ^/portraits?$ /index.php?album=portraits break; 
}

和这个:

location = /album { 
        rewrite ^album/([a-z]+)/?$ album.php?album=$1 break; 
}

这是我正在使用的整个 nginx 站点配置文件:

server {
        listen 80 default_server;
        listen 443 ssl;                                         
        root /config/www;
        index index.php index.htm index.html;
        server_name dev.mywebsite.com;

        ssl_certificate /config/keys/cert.crt;
        ssl_certificate_key /config/keys/cert.key;

        client_max_body_size 0;

        location / {
                try_files $uri $uri/ /index.html /index.php?$args =404;
        }
    location / {
                rewrite ^/(.*)$ /album.php?album=$1 last;
        }

    location ~ \.php$ {
                #fastcgi_split_path_info ^(.+\.php)(/.+)$;
                # With php5-cgi alone:
                fastcgi_pass 127.0.0.1:9000;
                # With php5-fpm:
                #fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                include /etc/nginx/fastcgi_params;

        }
}

解答

如果你真正拥有的文件是index.php,那么你可以重写(没有任何额外的location):

rewrite ^/portraits$ /index.php?album=portraits last;

当然保留location ~ \.php$ {:)

Logo

开发云社区提供前沿行业资讯和优质的学习知识,同时提供优质稳定、价格优惠的云主机、数据库、网络、云储存等云服务产品

更多推荐