【发布时间】:2014-11-17 01:05:27
【问题描述】:
当我尝试在使用 cpanel 的服务器上发布我的网站时遇到错误,该网站运行良好,在 wampserver 中运行良好,我认为问题可能来自为我生成 500 错误的 htaccess 文件
这是我的 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,请帮助我
【问题讨论】:
标签: .htaccess rewrite localhost cpanel wampserver