.php
フォルダー内のすべてのファイル アクセスを拒否する .htaccess をセットアップし、403、404、および500 が発生したときにユーザーを (ルート) ディレクトリのページにinclude/
リダイレクトする方法を教えてください。error
public_html/
index.php
key.php
現在、これは私が持っているものです:
<Files "^*\.php$">
order allow,deny
deny from all
</Files>
ErrorDocument 403 /error.html
ErrorDocument 404 /error.html
ErrorDocument 500 /error.html
<FilesMatch "^(index|key)\.php$">
Allow from all
</FilesMatch>
しかし、これは正しく機能せず、うまく機能します<FilesMatch "^(index|key)\.php$">
。
ありがとう!