CodeIgniter针对lighttpd服务器URL重写的方法_PHP教程
程序员文章站
2022-06-11 19:13:38
...
CodeIgniter针对lighttpd服务器URL重写的方法
由于开发环境使用的是lighttpd服务器,我本机环境使用的是Apache配置,导致部署到开发机后,所有的链接地址全部跳转到首页。
分析了下,index.php/controller/function ,controller没有生效,应该是路由分发的缘故。
配置lighttpd配置的url重写规则:
1 2 3 4 5 |
url.rewrite-once = ( "/(.*)\.(.*)" => "$0", "/(css|files|img|js|stats)/" => "$0", "^/([^.]+)$" => "/index.php/$1" ) |
另附Apache url重写规则:
1 2 3 4 5 6 7 8 9 10 11 12 |
ProxyPreserveHost On DocumentRoot "D:/Program Files/xampp/htdocs/xxx" ServerName xxx.baidu.com DirectoryIndex index.php Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all |
重启lighttpd服务,ok!
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
上一篇: sql保存数据出错
推荐阅读
-
CodeIgniter针对lighttpd服务器URL重写的方法
-
CodeIgniter针对lighttpd服务器URL重写的方法_PHP教程
-
CodeIgniter针对lighttpd服务器URL重写的方法_PHP
-
让Nginx支持ThinkPHP的URL重写和PATHINFO的方法分享_PHP教程
-
CodeIgniter针对lighttpd服务器URL重写的方法_PHP
-
CodeIgniter针对lighttpd服务器URL重写的方法_PHP教程
-
CodeIgniter针对lighttpd服务器URL重写的方法_php实例
-
CodeIgniter针对数据库的连接、配置及使用方法,codeigniter数据库_PHP教程
-
CodeIgniter针对lighttpd服务器URL重写的方法