码迷,mamicode.com
首页 > 其他好文 > 详细

宝塔环境安装thinkcmf5 开启rewrite伪静态方法

时间:2019-06-14 14:52:10      阅读:1158      评论:0      收藏:0      [点我收藏+]

标签:CMF   伪静态   html   api   request   details   index   nginx   运行   

thinkcmf5宝塔liunx版Nginx环境开启伪静态步骤。

https://blog.csdn.net/sql521hawk/article/details/82958583

 

1、绑定网站运行目录、

 

 

2、填写伪静态规则:

location / {
index index.php index.html index.htm;
if (!-e $request_filename)
{
rewrite ^/(.*)$ /index.php?s=$1;
}
}
location /api/ {
index index.php index.html index.htm;
if (!-e $request_filename)
{
rewrite ^/api/(.*)$ /api/index.php?s=$1;
}
}
location ~* \/upload\/.+\.(html|php)$ {
return 404;
}
location ~* ^\/plugins\/.+\.(html|php)$ {
return 404;
}
location ~* \/themes\/.+\.(html|php)$ {
return 404;
}
 

 

宝塔环境安装thinkcmf5 开启rewrite伪静态方法

标签:CMF   伪静态   html   api   request   details   index   nginx   运行   

原文地址:https://www.cnblogs.com/hakeer/p/11022809.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!