开发者

subdomain redirection using htaccess

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜