Hi, I want to redirect my main site domain.com to sub.domain.com/portal/ but with the url on the address bar remain as domain.com instead of sub.domain/portal/ Is it possible? Kindly show me the way to do it. Thanks.
Edit your vhost, and this at the very beginning: server { server_name sitetoredirect.com; return 301 http://sub.domain/portal/$request_uri; } Code (markup):