页面不起作用,并在CodeIgniter中返回HTTP错误500

时间:2017-02-25 12:54:08

标签: php .htaccess codeigniter

我有一个在CodeIgniter中构建的站点,在我的localhost上工作得很好,但是在将站点迁移到子域上的在线服务器时,它会“页面不起作用,http://sub.domain.com无法处理请求。 HTTP错误500“

我还将base_urllocalhost/school/更改为sub.domain.com,并且 数据库凭据也没关系。

这是我的htaccess代码:

enter image description here

1 个答案:

答案 0 :(得分:-1)

RewriteEngine on

RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com

RewriteRule ^(.*)$ http://domain.com/subdomains/%1/$1 [L,NC,QSA]