Skip to content

Instantly share code, notes, and snippets.

@zachseifts
Created June 20, 2012 13:24
Show Gist options
  • Save zachseifts/2959859 to your computer and use it in GitHub Desktop.
Save zachseifts/2959859 to your computer and use it in GitHub Desktop.
<?php
function appstate_provision_apache_vhost_config($uri, $data) {
return array(
" # rewrites /sites/default/files to the new url",
" <IfModule mod_rewrite.c>",
" RewriteEngine On",
" RewriteRule ^/sites/default/files(/.*)$ sites/" . $uri . "/files$1 [R,L]",
" </IfModule>"
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment