如何禁用访问.php和.html并重定向到404

时间:2019-07-29 12:27:30

标签: .htaccess

我的 HTACCESS

中有此代码
ErrorDocument 404 /errors-404.html
ErrorDocument 403 /errors-404.html

RewriteEngine On
RewriteBase /admin/
DirectoryIndex /auth/login.php
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^(.+)\.php - [F,L]
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME}.php -f 
RewriteRule ^([a-zA-Z0-9]+)(/)?$ $1.php

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.html [NC,L]

我希望访问者在访问www.site.com/login.php时重定向到我的自定义404页面,它必须是www.site.com/login才能进入登录页面,但是HTACCESS中的问题是我的DirectoryIndex他们打开我的网站,将他们重定向到我的404页面

0 个答案:

没有答案