Ok, this should be simple, but I'm having a fair amount of trouble with it. Basically, I'm trying to rewrite http://server.com/
to http://server.com/homepage
, but I only want it to rewrite it internally--the user should never see the /homepage
URL. I tried this:
RewriteRule ^$ /homepage [L]
And it properly matches the URL, but it issues a 301 redirect instead of just handling it internally--the user is redirected to http://server.com/homepage
. How do I change that?
I feel like this is something pretty simple, and I'm completely missing it, so hopefully someone out there can help!