DBA
DBA

Reputation: 3

Rewrite root to subdirectory

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

Answers (1)

Ulrich Palha
Ulrich Palha

Reputation: 9509

Add the following to your .htaccess file in the root directory of your site.

RewriteRule ^$ content/portal/ [L]

Upvotes: 1

Related Questions