Reputation: 3
I'm trying to get www.example.com to show the content at www.example.com/content/portal/
I'm not wanting a simple redirect, the url should show www.example.com. I've tried a number of the rewrite codes from this site but they all just redirect the page.
BTW I do redirect non-www urls to www.
Thanks in advance.
Upvotes: 0
Views: 629
Reputation: 9509
Add the following to your .htaccess file in the root directory of your site.
RewriteRule ^$ content/portal/ [L]
Upvotes: 1