Mod rewrite is giving me trouble on my Novell server.
I want the page a user access to be redirected, without the URL changing. For example, if a user asks for http://www.domain.ca/events/jan.html, I want to serve up the page http://www.domain.ca/A/events.jan.html. I want that to be invisible to the user.
The .htaccess file I've got now is:
Code: Select all
Options +FollowSymlinks
RewriteEngine on
RewriteRule (.*) /A/$1Code: Select all
Options +FollowSymlinks
RewriteEngine on
RewriteRule (.*) index_orig.htmlAny ideas?