Sunday 13 March 2005 11:42:10 am
k, basically what I ended up doing was to add two lines to my httpd conf file. The first one makes an exception in the rewrite, like this:
RewriteCond %{REQUEST_URI} !^/FOLDER_NAME.*
where FOLDER_NAME is the folder you want excepted.
The second line would be the alias rule, for diverting the request to the appropriate location, where any old: alias requested_folder new_path would do the trick.
Thanks for pointing me in the right direction. For making more advanced rewrites, which I found I require for parts of my site: http://httpd.apache.org/docs-2.0/mod/mod_rewrite.html cheers!
|