WordPress分类目录404解决办法

最后更新于 2024-09-18 164 次阅读


nginx 开启伪静态

location /
{
     try_files $uri $uri/ /index.php?$args;
     add_header Access-Control-Allow-Origin "*" always;
   add_header Access-Control-Allow-Methods 'GET,POST,OPTIONS';
   add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
}

rewrite /wp-admin$ $scheme://$host$uri/ permanent;
最后更新于 2024-09-18