尝试将php_flag magic_quotes_gpc 0
添加到.htaccess
文件:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
php_flag magic_quotes_gpc 0
所以我得到500(内部服务器错误)。
根据Godaddy托管支持尝试将magic_quotes_gpc = Off
添加到php5.ini
文件,但它根本不起作用。