Advertisement
OldCode101

Untitled

Mar 23rd, 2011
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. # com.foo.www
  2. RewriteCond %{HTTP_HOST} ^www\.foo\.com$
  3. RewriteCond %{REQUEST_URI} !^/www/
  4. RewriteRule (.*) /www/$1
  5.  
  6. # com.foo.drupal
  7. RewriteCond %{HTTP_HOST} ^drupal\.foo\.com$
  8. RewriteCond %{REQUEST_URI} !^/drupal/
  9. RewriteRule (.*) /drupal/$1
  10.  
  11. #com.bar.beta
  12. #RewriteCond %{HTTP_HOST} ^beta\.bar\.com$
  13. #RewriteRule (.*) /drupal/$1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement