我有一个image的imgur。此图像显示在除localhost之外的任何网站上。
可能是什么问题?
<img class="cover" src="http://i.imgur.com/CTIZUG1t.jpg" alt="">
错误:GET http://i.imgur.com/CTIZUG1t.jpg 403(禁止)
答案 0 :(得分:2)
答案 1 :(得分:0)
由于某种原因,它们阻止了import os
# Make the path stored in $LAMBDA_TASK_ROOT available to $PATH, so that we
# can run the executables we added at the root of our package.
os.environ["PATH"] += os.pathsep + os.environ['LAMBDA_TASK_ROOT']
的起源。为了解决这个问题,我在127.0.0.1
文件中添加了新行:
/etc/hosts
并访问127.0.0.1 vnbrs.localhost
(运行我的Web服务器的端口),就可以了!
请注意,您必须使用.localhost
TLD。