我正在Kali Linux中使用Code Igniter,我已经配置了文档中提到的.htaccess文件并正确配置了文件,但没有index.php就无法工作
a2enmod rewrite
我还启用了重写模式并重新启动了apache。这是我的.htaccess文件
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
3条答案
按热度按时间8ljdwjyq1#
在config.php
在项目位置创建.htaccess文件,其中包含以下内容(例如:/var/www/html/yourproject create .htaccess inside 'yourproject' folder)
将以下内容添加到虚拟主机配置文件中
然后重新启动Apache
rn0zuynd2#
按照以下步骤从url中删除
index.php
1)从config.php文件中删除“index.php”
2)你的.htaccess文件应该是:
3)在某些情况下,您还必须在配置文件中更改此设置
fumotvh33#
只需在.htaccess文件中使用它