我想问一下.首先,我将告诉我在
windows dekstop上开发应用程序使用codeIgniter.它清晰完整.
但是,在我将该项目移至debian服务器之后,它说:
The requested URL /index.PHP/Admin was not found on this server.
我想问一下,为什么我得到这样的输出?虽然我使用相同的代码运行相同的项目.我该怎么做才能解决这个问题?
谢谢…
首先启用mod_rewrite,然后使用以下命令重启apache2:
原文链接:https://www.f2er.com/php/138437.htmlsudo a2enmod rewrite sudo service apache2 restart
然后使用命令打开apache conf文件:
sudo gedit /etc/apache2/apache2.conf
如果注释,则取消注释下面的行
AccessFileName .htaccess
然后在apache2.conf中找到这些行
<Directory /var/www/> Options Indexes FollowSymLinks AllowOverride None Require all granted
此处将AllowOverride None行更改为AllowOverride All并保存此文件.
现在,您的问题已得到解决.