错误404错误
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我为此使用的是 mod_rewrite。只需将以下 htaccess 文件放入图像文件夹(本例中为“/assets/avatars”)即可。可以是任意文件夹;只需相应地更改 RewriteBase 的值即可。
如果请求的图像文件不存在,此脚本将显示 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.
This script will show the noimage.jpg if the requested image file doesn't exist. If you use .png, just replace .jpg with .png