wordpress nginx 重写规则
时间: 2023-12-23 12:28:09 浏览: 312
wordpress nginx多站点rewrite(重写)规则
以下是一个示例的WordPress和Nginx重写规则配置:
```nginx
server {
listen 80;
server_name yourdomain.com;
root /var/www/html;
index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
```
这个配置文件中,我们定义了一个服务器块,监听80端口,并将请求转发到/var/www/html目录下的WordPress安装。在location / 部分,我们使用了try_files指令来处理URL重写,如果请求的文件或目录不存在,则将请求转发到index.php文件。在location ~ \.php$ 部分,我们配置了PHP解析器的路径和参数。
请注意,这只是一个示例配置,你需要根据你的实际情况进行相应的修改。
阅读全文