首页 > 系统相关 >tp5部署到nginx后所有分页404的解决办法

tp5部署到nginx后所有分页404的解决办法

时间:2023-01-06 10:07:15浏览次数:68  
标签:index co log nginx tp5 404 yunliu php fastcgi


# Begin HTTP Server
server {
listen 80;
server_name api.yunliu.co www.yunliu.co yunliu.co;
access_log logs/localhost_access.log;
error_log logs/localhost_error.log;
root E:/cloudflow/think/public;
index index.php index.html index.htm;
location / {
### 下边这一句很关键 ###
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
##########################
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass php_processes;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
}
# End HTTP Server

参考:

​http://www.thinkphp.cn/topic/65411.html​


 

标签:index,co,log,nginx,tp5,404,yunliu,php,fastcgi
From: https://blog.51cto.com/kenkao/5992124

相关文章

  • Nginx根据用户IP设置访问跳转
    Nginx判断用户IP设置访问跳转第一种方法根据$remote_addr客户端IP地址判断,判断成功即返回301跳转,可以写正则,如果有大量不规则IP就很头疼了。23if($remote_addr=192......
  • 隐藏nginx版本信息
    这里我们可以通过一个参数即可隐藏nginx版本信息1查看当前版本[root@server1/]#curl-I127.0.0.12、隐藏版本信息编辑nginx配置文件,在http配置段中添加server_toke......
  • upload.html:143 GET http://localhost:8080/user_image/85F250A6-E07D-4FCB-8092-D4A
    publicclassLoginInterceptorConfigureimplementsWebMvcConfigurer{@OverridepublicvoidaddResourceHandlers(ResourceHandlerRegistryregistry){......
  • php+vscode+nginx+Xdebug 安装教程(vscode用debug的调试php)
    环境:window10+ phpstudy+vscode php全篇用php8.0.2,也可以用其他的版本,但要注意所有配置路径都要统一版本一、环境变量将你正在使用的php加入环境变量。因为phpstudy......
  • 从 Nginx Ingress 窥探云原生网关选型
    作者:魁予现今有越来越多的企业开始采纳云原生理念进行应用架构转型。而K8s和微服务是云原生的两大支柱,随着云原生浪潮而被广泛应用。对多数应用而言,提供对外服务的使命并......
  • 从 Nginx Ingress 窥探云原生网关选型
    作者:魁予现今有越来越多的企业开始采纳云原生理念进行应用架构转型。而K8s和微服务是云原生的两大支柱,随着云原生浪潮而被广泛应用。对多数应用而言,提供对外服务的使......
  • nginx
    目录try_files443强转vhost配置499问题7层负载formatjsonlogtry_fileslocation/{try_files$uri$uri//index.html;}443强转if($ssl_protocol=""){......
  • 【Nginx基础知识】详解nginx配置url重定向-反向代理
    【Nginx基础知识】详解nginx配置url重定向-反向代理本文系统:Centos6.5_x64三台主机:nginx主机,hostname:master.lansgg.com IP:192.168.10.128           ......
  • 路由别名和404路由页面配置
    路由别名配置-alias配置路由重定向,当用户访问/a的时候,URL会被替换/b之后匹配实际路由/b配置路由别名,/a的别名是/b,当用户访问/b的时候,URL会保持为/b,但路由匹配为/a,和用......
  • uni-app 打包H5时,访问index.html页面白屏报错net::ERR_ABORTED 404
    uni-app打包H5后,访问index.html页面,页面却是白屏,Console控制台报错404,报错图如下:    原因:  解决方法:  配置文件manifest.json文件中H5配置里面,一开始......