nginx配置支持thinkcmf的pathinfo模式
程序员文章站
2024-02-23 14:11:34
...
在nginx的配置文件中,修改nginx的配置:
在目录\tfcms\public\thinkcmf.conf下有thinkcmf.conf配置文件,打开文件查看内容如下:
# 本文件是nginx的配置文件。
# 根据需要修改下面的域名与目录
# 通常放置在/etc/nginx/conf.d下
server {
listen 80;
#域名设置
server_name thinkcmf.com;
#项目目录
root /www/thinkcmf/public;
index index.php;
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
将该配置文件放置到nginx的conf.d目录下。
推荐阅读
-
nginx配置支持thinkcmf的pathinfo模式
-
Django以fastcgi模式下的Nginx配置文件
-
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享_PHP教程
-
thinkphp在低版本Nginx 下支持PATHINFO的方法分享
-
nginx pathinfo配置,适用于较高版本的nginx nginx pathinfo support nginx rewrite pathinfo nginx pathinfo 支
-
让Nginx支持shtml格式的配置方法
-
Nginx下实现pathinfo及ThinkPHP的URL模式
-
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享_PHP
-
解决nginx不支持thinkphp中pathinfo的问题,nginxthinkphp
-
nginx 部署thinkphp 做的东西, 配置 Pathinfo 模式,终于配好了,nginxthinkphp_PHP教程