我有一个 .htaccess 文件,内容如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
index.php 上有一个应该始终显示的图像,但是当我导航到重写的路径时,对图像的请求会以该路径为前缀。所以“类别”部分,虽然它仍然应该在 images/foo.png 显示我的 foo.png,但现在有路径 categories/images/foo.png
我可以用 .htaccess 重写规则严格解决这个问题吗?如果是这样,怎么做?