我正在尝试使用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;
}
我找不到文件。