我有这个错误,我无法解决它。我打字
tail -f /usr/local/apache/logs/error_log
在 cpanel 终端上,我收到以下错误:
[authz_core:error] [pid 10250]
这是我的 .htaccess 代码:
<IfModule authz_core_module>
Require all granted
</IfModule>
<IfModule !authz_core_module>
Require all denied
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
我无法在我的 vps 服务器(hostgator Apache 2.4.41)中打开 php 文件,而不是打开文件,而是下载它。
牧羊人nacy