1652291305 大佬有话说 :
请求dalao改写nginx规则
请求dalao改写nginx规则
location /
{
try_files $uri $uri/ /index.php;
}
location ~ [^/].php(/|$)
{
try_files $uri $uri/ /index.php;
fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ /.well-known {
allow all;
}
location ~ /.
{
deny all;
}
想改成apache的
wweng 大佬有话说 :
try_files $uri $uri/ /index.php…..
最通用的规则啊,找个wordpress的htaccess就能用了