宝塔环境安装thinkcmf5 开启rewrite伪静态方法
Posted hakeer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了宝塔环境安装thinkcmf5 开启rewrite伪静态方法相关的知识,希望对你有一定的参考价值。
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伪静态方法的主要内容,如果未能解决你的问题,请参考以下文章