Nginx+CI出现404错误
程序员文章站
2022-05-06 22:54:18
...
最近刚学ci框架,做了个简单的项目,在本地搭服务器的环境都调通了,但是部署到远程服务器时:
http://example.com/(index.php)/ 可以访问(为配置的默认controller-class)
http://example.com/(index.php)/[controller-class]/[controller-method] 不可以访问(提示404错误!)
最后百度原因:
对于/index.php/abc这种url,Apache和Lighttpd会按”index.php?abc”来解释,而nginx会认为是请求名字是“index.php”的目录下的abc文件的内容。所以CI在nginx下不配置rewrite是无法运行的,而在Apache和Lighttpd则正常。
解决方案(要点加粗,重点标红):
1 server { 2 listen 80; 3 server_name example.com; 4 root /data/wwwroot/example/ 5 index index.php index.html index.htm; 6 7 location ~* \.(css|js|swf|htm|jpg|png|gif|json|atlas)?$ { 8 expires 1d; 9 add_header Pragma public; 10 add_header Cache-Control "public"; 11 } 1213 location /controller-class/ { 14if (!-e $request_filename) { 15 rewrite ^/controller-class/(.*)$ /controller-class/index.php?q=$uri&$args; 16 } 17 } 1819 location ~ \.php$ { 20 fastcgi_pass 127.0.0.1:9000; 21 fastcgi_index index.php; 22 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 23 fastcgi_param PHP_VALUE open_basedir=$document_root:/tmp/:/proc/; 24include fastcgi_params; 25 } 2627 }
参考资料:http://www.2cto.com/os/201301/185926.html【Nginx+CI出现404错误问题】
以上就介绍了Nginx+CI出现404错误,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
浅析Dos下运行php.exe,出现没有找到php_mbstring.dll 错误的解决方法
-
VSCode出现ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)错误
-
SQLserver2000 企业版 出现"进程51发生了严重的异常"错误的处理方法
-
清除SQL SERVER错误日志出现操作系统错误的解决方法
-
安装会声会影X5时出现CRC错误提示媒体可能已损坏
-
NGINX下配置404错误页面的方法分享
-
LNMP系列教程之 设置404错误页面
-
wordpress4.1中文标签出现404错误的解决办法
-
IIS 8.5下设置404错误页图文教程
-
IIS 8.5下设置自定义404错误页