Codeigniter web app is not working with the linux but here on windows is fine(Codeigniter Web 应用程序不适用于 linux,但在 Windows 上很好)
问题描述
Codeigniter 网络应用无法在 linux 上运行,但在 windows 上运行良好
我已经在我的 Windows 上安装了 wamp 服务器,并且我设置了我的应用程序(codeigniter)那里工作正常,但是在 linux(Centos)上,其他 php 应用程序只是正常工作但只有这个 codeigniter 应用程序不工作
i have install wamp server on my windows and i set my application(codeigniter) there is working fine but here on linux(Centos) other php application are just woking fine but only this codeigniter app is not working
那里有它需要的任何包或...
there there any pakage does it requires or ...
谢谢
推荐答案
正如@Orangepill 的评论中所述,它也可能是区分大小写的 unix 文件系统,根据我自己的经验,它连接到 .htaccess
解析不同:
As stated in the comment by @Orangepill it could be either case sensitive unix filesystem either, in my own experience it was connected to the .htaccess
parsed differently:
RewriteEngine on
RewriteCond $1 !^(index.php|images|robots.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
有时这些在 linux 上会失败,因为它需要在 index.php
之后添加一个 ?
符号,因此您可以尝试:
Sometimes these fail on linux as it requres an ?
sign after index.php
so you can try:
RewriteRule ^(.*)$ /index.php?/$1 [L]
这篇关于Codeigniter Web 应用程序不适用于 linux,但在 Windows 上很好的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Codeigniter Web 应用程序不适用于 linux,但在 Windows 上很好
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01