找到放虚拟站点nginx的配置文件
/usr/local/nginx/conf/vhost/域名.conf
然后引用rewrit里的伪静态配置文件 onelndex可以直接用wordpress的伪静态
在server{}里引进改文件就行:
include /usr/local/nginx/conf/rewrite/wordpress.conf;
保存,退出。再到后台设置就行。
//
或者在/usr/local/nginx/conf/rewrite里 添加onelndex的伪静态配置文件
新建一个onelndex.conf的文件
添加伪静态规则
if (!-f $request_filename){
set $rule_0 1$rule_0;
}
if (!-d $request_filename){
set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
rewrite ^/(.*)$ /index.php?/$1 last;
}
保存退出。
然后在配置文件/usr/local/nginx/conf/vhost/域名.conf中引用该文件就行
Include /usr/local/nginx/conf/rewrite/onelndex.conf;.
保存 退出,在网站后台进行配置 ,就好。
版权属于:小小窝/禾下月
本文链接:https://hxyxyz.top/index.php/%E6%8A%80%E6%9C%AF/39.html
本站文章采用 知识共享署名4.0 国际许可协议 进行许可,请在转载时注明出处及本声明!