我有一个在CodeIgniter中构建的站点,在我的localhost上工作得很好,但是在将站点迁移到子域上的在线服务器时,它会“页面不起作用,http://sub.domain.com无法处理请求。 HTTP错误500“
我还将base_url
从localhost/school/
更改为sub.domain.com
,并且
数据库凭据也没关系。
这是我的htaccess代码:
答案 0 :(得分:-1)
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com
RewriteRule ^(.*)$ http://domain.com/subdomains/%1/$1 [L,NC,QSA]