我最近对php站点进行了htaccess重定向,重定向本身有效,但现在我无法访问管理面板.它显示的只是一页空白


I recently did an htaccess redirection of php site, The redirect itself works, but now I cannot access the admin panel. All it shows is a blank page

我最近对php站点进行了htaccess重定向,重定向本身是有效的,但现在我无法访问管理面板。它显示的只是一页空白。

这是htaccess代码:

RewriteEngine On  
RewriteCond %{REQUEST_FILENAME} !-f  
RewriteRule ^([^'.]+)$ $1.php [NC,L]

在为每个请求添加.php文件之前,请确保该文件存在:

RewriteEngine On  
RewriteCond %{REQUEST_FILENAME}.php -f  
RewriteRule ^(.+?)$ $1.php [L]