if mod_rewrite disabled, is there any other way to redirect 开发者_Go百科a domain to another one?
Using htaccess too or any other way.
To redirect the whole domain to another one use:
Redirect 301 / http://newdomain.com/
Edit: To redirect a specific subdirectory use:
Redirect 301 /dir http://new.com/
精彩评论