Rewrite Drupal's File system paths to remove redundant sites/example.com


/ Published in: Apache
Save to your folder(s)

My [original post](http://drupal.org/node/84895) languished for years before someone pointed out a possible solution [here](http://drupal.org/node/53705).

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.**


Copy this code and paste it in your HTML
  1. RewriteEngine On
  2. RewriteCond %{REQUEST_FILENAME} !-f
  3. RewriteCond %{REQUEST_FILENAME} !-d
  4. RewriteRule ^(.*)$ /sites/%{HTTP_HOST}/files/$1 [L]

URL: http://drupal.org/node/53705

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.