Forum Moderators: bakedjake
So lets say somebody calls www.domain.com/subfolder/page1
The htaccess file is set to automatically call ../page45.
The browser still still displays www.domain.com/subfolder/page1, but the actual file that's loaded is www.domain.com/page45
I've seen somebody do this before, but I couldn't figure out how they managed to pull it off :( Any help?
Options +FollowSymLinksThe Apache Forum Charter [webmasterworld.com] has some good links to get you started.
RewriteEngine on
RewriteRule page1 ../page45 [L]