我正在开发一个Codeigniter应用程序。在仍处于开发阶段时,我想“隐藏”实时域中的应用程序。因此,当访问www.myapp.com时,我得到了index.html页面。其他所有网址都应重定向到www.myapp.com/index.php。
首先提供index.html,因此该部分正常工作。但是,看来我无法弄清楚.htaccess和config ['index_page']部分。
我尝试了以下所有组合:
使用和不使用htaccess重写index.php:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php/$1
将config ['index_page']保留为空白或设置为index.php