CI 多个站点实现的问题
我的网站根目录下安装了一个ci框架,两个开发目录a,b ,想实现多个站点共享一个system,nginxrewrite 配置:
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
求助大家,这是什么原因呢??
谢谢!
共用一个system目录。复制一个application文件夹,再复制一个index.php,更改一下配置就可以了。 这种rewrite 怎么写呢 ?
页:
[1]