我的网站上有一个名为/ftp
的目录,我在服务器上安装了net2ftp,以便我可以更轻松地从任何地方访问我的网站文件。我遇到的问题是我正在尝试使用
/ftp/index.php
DirectoryIndex /index.php
然而,当我去/ftp
时,它会发射403 Forbidden Error
。我将所有目录前导至777以及/ftp
和.htaccess
文件(/
和/ftp
)并且仍然存在403错误。奇怪的是,当我手动输入/ftp/index.php
时,它将显示ftp客户端的登录页面。
如果有人可以提供帮助,我们将不胜感激。
答案 0 :(得分:0)
我将.htaccess更改为此,现在可以正常工作:
DirectoryIndex index.php
RewriteEngine On
RewriteBase /ftp
ErrorDocument 404 /404.php
ErrorDocument 403 /403.php
Order allow,deny
Allow from all
Require all granted