在localhost上访问文件的权限被拒绝(wordpress安装)

时间:2012-12-08 19:00:29

标签: wordpress localhost

我有一个奇怪的问题......我已经在本地安装了Wordpress(我在Ubuntu上),我现在遇到了一个问题,因为我在css中找到了一个图像文件...

.sprites{ background:url("sprites.png") top left no-repeat; }
._r3_c5{ width:210px; height:204px; background-position:-10px -10px; }

当我尝试做的时候:

<div class="sprites _r3_c5">
</div>

我什么都没看到。 如果我然后检查我的源代码,并尝试在新选项卡中打开(损坏)图像,我收到此消息:

Forbidden

You don't have permission to access /current/alex/wp-content/themes/starkers/sprites.png on this server.

有人知道这个的原因吗?

2 个答案:

答案 0 :(得分:1)

听起来像Ubuntu中用于网站的帐户的权限问题(这通常与您的用户帐户不同)。检查文件/文件夹的所有者,组和权限,并根据需要进行调整。

这是来自WordPress codex的关于安全性的链接。 http://codex.wordpress.org/Hardening_WordPress

答案 1 :(得分:1)

这似乎是目录权限问题,因为您正在尝试使用http。

获取文件

如何将目录权限设置为755或777?