我正在使用CodeIgniter构建一个网站,但是当我重定向时,它会在Google Chrome中向我发出警告,并且它不会加载我的CSS或JavaScript。请注意,它确实重定向,但它只是不加载我需要加载的文件(CSS和JavaScript文件)。
Google Chrome中的警告:
资源解释为脚本但使用MIME类型text / html传输: 资源解释为样式表,但使用MIME类型text / html传输:
它在Internet Explorer和FireFox中给出了类似的错误。
这是重定向文件中的代码:
//check if values exists or not
foreach($recordInfo as $record)
{
if($record == '')
{
redirect("home/nothing/", 'location');
}
}
我的路线文件如下所示:
$route['home/(:any)'] = "user_join/signup/$1";
$route['home'] = "user_join/signup";
$route['default_controller'] = "user_join/signup";//structure folder/controller;
$route['404_override'] = '';
我四处寻找解决方案。有些地方说addtype到.htaccess但是没有用。其他人说Apache没有正确配置。
查看带警告的页面的源代码时,CSS和JavaScript链接链接到注册页面而不是CSS或JavaScript文件