尝试设置新的篝火安装。我已经完成了安装过程,当我启动网站时,我得到欢迎页面没问题。 但是当我点击登录按钮时,我收到以下错误消息:
在此服务器上找不到请求的URL /index.php。 位于localhost端口80的Apache / 2.2.22(Ubuntu)服务器
网址如下:
http://myserver/testsite/login
在安装过程中,我收到了以下消息:
请将.htaccess RewriteBase设置为:RewriteBase / testsite /请删除安装文件夹并返回Bonfire
我在我的盒子上做了一个“find / -name .htaccess”,发现了一些:
/var/www/testsite/.htaccess
/var/www/testsite/install.old/.htaccess
/var/www/testsite/bonfire/application/.htaccess
/var/www/testsite/bonfire/application/cache/.htaccess
/var/www/testsite/bonfire/codeigniter/.htaccess
我已经尝试更改/ var / www / testsite中的那个,因为它似乎是主要的一个。 但我仍然收到相同的错误消息。 任何建议将不胜感激。
答案 0 :(得分:0)
假设mod_rewrite
已启用,请不要忘记在.htaccess文件中将其启用:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /testsite/
</IfModule>
如果您认为可能没有,请运行:
sudo a2enmod rewrite
sudo service apache2 reload
sudo service apache2 restart
答案 1 :(得分:0)
我必须将以下行添加到文件
/var/www/bonfire/application/config/config.php
代码:
$config['index_page'] = 'index.php';
感谢。