Guest User

Untitled

a guest
Dec 15th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Options +FollowSymLinks
  2. IndexIgnore */*
  3. RewriteEngine on
  4.  
  5. # If the request does not start with the web, we add it
  6. RewriteCond %{REQUEST_URI} !^/(appadv/frontend/web)
  7. RewriteRule (.*) /appadv/frontend/web/$1
  8.  
  9. # If the file or directory does not exist, go to /web/index.php
  10. RewriteCond %{REQUEST_FILENAME} !-f
  11. RewriteCond %{REQUEST_FILENAME} !-d
  12. RewriteRule . /appadv/frontend/web/index.php
  13.  
  14. LogLevel warn rewrite: trace4
Add Comment
Please, Sign In to add comment