/ Published in: Apache
URL: http://drupal.org/node/53705
My original post languished for years before someone pointed out a possible solution here.
The following user-submitted code may be useful in redirecting URLs for the /files directory to the /sites/example.com/files directory. The following code is added to the [drupal_root]/files/.htaccess file. Note, this directory is not part of the default Drupal distribution and must be added.
Expand |
Embed | Plain Text
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /sites/%{HTTP_HOST}/files/$1 [L]
You need to login to post a comment.
