当我不编辑我的.htaccess
文件时,我的图像路径如下所示:http://this.website.com/codeigniter/inc/images/logo.jpg
.
但是,只要我将此代码添加到.htaccess
文件中:
RewriteEngine On
RewriteCond $1 !^(index\.php)
RewriteRule ^(.+)$ index.php?$1 [L]
(index.php
从 URL 中删除),我得到 404 错误,即使使用完全相同的路径。
如何删除index.php
并仍然可以访问我的图像?