Laravel 4,PHP 5.3:禁用magic_quotes_gpc

时间:2014-03-04 17:24:10

标签: php .htaccess laravel-4

尝试将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文件,但它根本不起作用。

0 个答案:

没有答案