当我尝试在使用cpanel的服务器上发布我的网站时,我遇到了一个错误,该网站在wampserver上工作得很好,我认为问题可能来自htaccess文件,它为我生成了500错误
这是我的htaccess
php_flag display_errors on
php_value error_reporting 9999
RewriteEngine On
RewriteBase / (because my files are in public_html)
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
这是我第一次使用stackoverflow请帮帮我
答案 0 :(得分:1)
如果有人在这里传递,只需从yout .htaccess中删除php_flag和php_value,因为某些托管公司不允许用户使用它们,就像在我的情况下一样