错误404错误

发布于 2024-12-14 06:42:34 字数 290 浏览 0 评论 0原文

我的 Web 根目录中有一个保存用户头像的文件夹,但每当向该文件夹发出加载图像的请求时,都会显示默认错误 404 页面,我正在使用 codeigniter。 我的 .htaccess 文件看起来像这样

RewriteEngine On
RewriteCond $1 !^(index\.php|(.*)\.user_guide|assets|profiles|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]

,但我仍然收到 404 错误。 请帮帮我

I have a folder on my web root where user avatars are save, but whenever a request is made to the folder to load an image,the default error 404 page is displayed, am using codeigniter.
And my .htaccess file looks like this

RewriteEngine On
RewriteCond $1 !^(index\.php|(.*)\.user_guide|assets|profiles|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]

And still i get the 404 error.
Please help me out

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖心男生 2024-12-21 06:42:34

我为此使用的是 mod_rewrite。只需将以下 htaccess 文件放入图像文件夹(本例中为“/assets/avatars”)即可。可以是任意文件夹;只需相应地更改 RewriteBase 的值即可。

RewriteEngine on
RewriteBase /assert/avatars

RewriteCond %{REQUEST_fileNAME} !-f
RewriteRule ^(.*)\.jpg$ noimage.jpg [L]

如果请求的图像文件不存在,此脚本将显示 noimage.jpg。如果您使用 .png,只需将 .jpg 替换为 .png

What I use for this is mod_rewrite. Just put the following htaccess file in the image folder in this case '/assets/avatars'. Can be any folder; just change the value for RewriteBase accordingly.

RewriteEngine on
RewriteBase /assert/avatars

RewriteCond %{REQUEST_fileNAME} !-f
RewriteRule ^(.*)\.jpg$ noimage.jpg [L]

This script will show the noimage.jpg if the requested image file doesn't exist. If you use .png, just replace .jpg with .png

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文