如何在Nginx服务器中使用php创建永久链接?

时间:2019-04-13 16:15:50

标签: php nginx

我正在尝试使用Nginx服务器中的php创建一个友好的url,但出现“找不到文件”。

我的示例网址是:http // localhost / post / 123 / title

我的nginx conf是:

location / {
    try_files $uri $uri/ /index.php?$args;
}

location /post {
    try_files $uri $uri/ @rewrite;
}
location @rewrite {
    rewrite ^/post/(.*)$/(.*)$ /post/postsingle.php?id=$1&title=$2;
}
location ~ \.php$ {
    include fastcgi.conf;
    try_files $uri =404;
}

我找不到文件。

0 个答案:

没有答案