Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Options -Indexes +SymLinksIfOwnerMatch
  2. DirectoryIndex index.php index.html
  3. RewriteEngine on
  4. RewriteBase /
  5.  
  6. RewriteCond %{REQUEST_URI} !^/production/
  7.  
  8. # Don't apply to URLs that go to existing files or folders
  9. RewriteCond %{REQUEST_FILENAME} !-f
  10. RewriteCond %{REQUEST_FILENAME} !-d
  11.  
  12. # Rewrite all those to insert /production folder
  13. RewriteRule ^(.*)$ /production/$1 [L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement