Mobile Redirect using htaccess

后端 未结 9 1657
不思量自难忘°
不思量自难忘° 2020-11-22 03:36

I have a website called

www.website.org

I have a mobile website called

m.website.org

I want to use an htaccess to a

9条回答
  •  广开言路
    2020-11-22 04:13

    You can also try this. Credits to the original author who has since removed the script

    /mobile.class.php

    0)
        {
            header("location: $mobile");
            exit;
        }
    
    }
    ?>
    

    Just edit the $mobile = "http://www.stepforth.mobi";

提交回复
热议问题