开发者

subdomain redirection using htaccess

开发者 https://www.devze.com 2023-02-13 05:05 出处:网络
I need to redirect the urlhttp://testing.dom开发者_如何学Cain.com/ to http://testing.domain.com/admin/index.phpI think you are trying to secure your home page.Put this php code in your index.php.

I need to redirect the url http://testing.dom开发者_如何学Cain.com/ to http://testing.domain.com/admin/index.php


I think you are trying to secure your home page. Put this php code in your index.php.

header("Location: http://testing.domain.com/admin/index.php")  
exit;

If you got everything in admin folder, then you can use this one

Options -Indexes
RewriteEngine on                   
RewriteCond $1 !^(admin)
RewriteRule ^(.*)$ admin/index.php [L]


Put the following into your .htaccess file

Redirect 301 http://testing.domain.com/ http://testing.domain.com/admin/index.php
0

精彩评论

暂无评论...
验证码 换一张
取 消