pbootcms网站Nginx环境伪静态配置

wdzsjl 2周前 (10-10) 阅读数 2 #ASP

1、到后台配置参数中开启伪静态;

2、在nginx虚拟主机location配置中添加规则,规则如下:

location / { 	 if (!-e $request_filename){ 	    	rewrite ^/index.php(.*)$ /index.php?p=$1 last;             	rewrite ^(.*)$ /index.php?s=$1 last; 	 } }

 注意:Nginx中如果站点部署在二级目录,请对应修改重写规则, 如:二级目录为test则:rewrite ^/test/(.*)$ /test/index.php?p=$1 last;

wx.jpg ywfw.jpg
热门