dongzhoutuo0883 2018-09-30 23:08
浏览 42
已采纳

Codeigniter使用config.php将非www重定向到www

I know how to redirect non-www to www using the .htaccess. But for some reason, I can't do it from the .htaccess file! I would like to do this from application/config.php. There already have HTTP to https redirect. here is the code,

$root = (isset($_SERVER['HTTPS']) ? "https://" : "http://") . $_SERVER['HTTP_HOST'];
$root .= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
$config['base_url'] = $root;

Now, Is it possible to redirect non-www to www from here? If it's possible then how?

Thanks in advance.

  • 写回答

1条回答 默认 最新

  • dqwh1119 2018-10-01 02:41
    关注

    Ok, after trying in several ways I found a simple solution! Unfortunately, I couldn't do this from the config.php. But I did this from the index.php without using .htaccess. And for me, it's working well.

    Here is the code, that I implemented at root-> index.php

    if (substr($_SERVER['SERVER_NAME'],0,3)!="www"){
        header("HTTP/1.1 301 Moved Permanently");
        header("Location: https://www.".$_SERVER['HTTP_HOST'] ."".$_SERVER['REQUEST_URI']);
        exit(3); // EXIT_CONFIG
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示