Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. RewriteRule ^(.*)/en/(.*)$ $1/$2 [L]
  2.  
  3. RewriteRule ^/en(.*)$ $1 [L]
  4.  
  5. RewriteRule http://www.nameofthecompany.com http://www.google.com [L]
  6.  
  7. RewriteRule ^ http://www.google.com [L]
  8.  
  9. # Pass all requests not referring directly to files in the filesystem to
  10. # index.php. Clean URLs are handled in drupal_environment_initialize().
  11. RewriteCond %{REQUEST_FILENAME} !-f
  12. RewriteCond %{REQUEST_FILENAME} !-d
  13. RewriteCond %{REQUEST_URI} !=/favicon.ico
  14. RewriteRule ^ index.php [L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement