环境:nginx
如果是nginx可以采用如下的修改:
server {
location / {
#更换wp链接格式报错问题
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
}
2024-05-23 479 0
环境:nginx
如果是nginx可以采用如下的修改:
server {
location / {
#更换wp链接格式报错问题
try_files $uri $uri/ /index.php?$args;
}
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
}