29

サイトのサブディレクトリへのアクセスを遮断したいのですが、サブディレクトリへのアクセスを 403 禁止ではなく 404 エラーにしたいです。これはどのように達成できますか?

4

3 に答える 3

1

You could also for the time being change which page a user will see when confronted with a 403 error, but I wouldn't recommend doing this long-term.

.htaccess:

ErrorDocument 403 /your404pagehere.php
于 2013-09-11T00:09:50.173 に答える