.htaccess转换nginx服务器伪静态文件

2024-11-11 08:26:04
推荐回答(1个)
回答1:

nginx.conf 文件放在网站根目录下

location / {
rewrite ^tweet/([0-9]+)/?$ index.php/?app=tweet&action=view&id=$1 last;
.
.
.
.

}
在虚拟机配置文件中加入 include 网站路径/nginx.conf