wordpress
原 wordpress基于nginx和apache伪静态配置
NGINX版本 配置参考docker版:bitnami/wordpress-nginx server { listen 0.0.0.0:88; server_name localhost; root /usr/share/nginx/html; index index.php; #通用匹配,优先级最低,任何未匹配到其它location的请求都会匹配到,相当于switch中的default location / { #尝试$uri存在直接返回,再尝试$uri/存在则301重定向,否则执行最后段内部转发(所有其它匹配不到的,都会走转发index.php) try_files $uri $uri/ ...