使用htaccess时出现错误500

时间:2016-05-02 03:19:53

标签: php apache .htaccess mod-rewrite

我使用htaccess文件来路由url请求。我的htaccess代码是:

Options +FollowSymLinks
    RewriteEngine On
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*)/$ $1 [R=301,L]

    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{QUERY_STRING}     ^lang=(.*)$    [NC]

    RewriteRule ^([^.*]+)/?$    ./index.php?url=$1&lang=%1 [L,QSA]
    RewriteRule ^([^.*]+)/?$    ./index.php?url=$1&lang=en [L,QSA]

我之前在其他主机上使用它并且工作正常但现在我将网站移动到另一台主机并且我收到500错误。 我怎么解决这个问题?感谢...

0 个答案:

没有答案