|
我的网站根目录下安装了一个ci框架,两个开发目录a,b ,想实现多个站点共享一个system,
nginx rewrite 配置:
if (!-e $request_filename) {
rewrite ^.*$ /index.php last;
}
实现了入口文件index.php隐藏并且默认可以访问a站点,
同时我在根目录为b站点设置了入口文件 default.php,指向b
现在http://localhost/home 可以访问到a
http://localhost/default.php 可以访问b,
但是http://localhost/default.php/home/ 提示:
404 Page Not Found
求助大家,这是什么原因呢??
谢谢!
|
|