thinkcmf安装常见问题
时间:2023年09月19日
/来源:网络
/编辑:佚名
thinkcmf安装的时候经常遇见的问题,以下说明以宝塔为例。
访问页面后是403
宝塔后台->网站->对应域名后面的设置按钮->网站目录->运行目录,选择public。
fileinfo不支持
宝塔后台->软件商城->已安装->对应版本的php后面的设置按钮->安装扩展,找到fileinfo点击安装。
测服务器rewrite、API rewrite不支持
宝塔后台->网站->对应域名后面的设置按钮->伪静态,输入以下代码
点击复制代码 PHP
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.php?s=$1;
}
}
location ~* ^\/upload\/.+\.(html|php)$ {
return 404;
}
location ~* ^\/plugins\/.+\.(html|php)$ {
return 404;
}
location ~* ^\/themes\/.+\.(html|php)$ {
return 404;
}
目录、文件权限检查无法写入
在宝塔文件管理里面找到对应的文件位置,点击后面的权限,权限设置成755
访问页面后是403
宝塔后台->网站->对应域名后面的设置按钮->网站目录->运行目录,选择public。
fileinfo不支持
宝塔后台->软件商城->已安装->对应版本的php后面的设置按钮->安装扩展,找到fileinfo点击安装。
测服务器rewrite、API rewrite不支持
宝塔后台->网站->对应域名后面的设置按钮->伪静态,输入以下代码
点击复制代码 PHP
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.php?s=$1;
}
}
location ~* ^\/upload\/.+\.(html|php)$ {
return 404;
}
location ~* ^\/plugins\/.+\.(html|php)$ {
return 404;
}
location ~* ^\/themes\/.+\.(html|php)$ {
return 404;
}
目录、文件权限检查无法写入
在宝塔文件管理里面找到对应的文件位置,点击后面的权限,权限设置成755
新闻资讯 更多
- 【建站知识】查询nginx日志状态码大于400的请求并打印整行04-03
- 【建站知识】Python中的logger和handler到底是个什么?04-03
- 【建站知识】python3拉勾网爬虫之(您操作太频繁,请稍后访问)04-03
- 【建站知识】xpath 获取meta里的keywords及description的方法04-03
- 【建站知识】python向上取整以50为界04-03
- 【建站知识】scrapy xpath遇见乱码解决04-03
- 【建站知识】scrapy爬取后中文乱码,解决word转为html 时cp1252编码问题04-03
- 【建站知识】scrapy采集—爬取中文乱码,gb2312转为utf-804-03