Guest User

Untitled

a guest
Dec 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ...
  3. <Location />
  4. <IfModule mod_rewrite.c>
  5. RewriteEngine On
  6. RewriteBase /
  7. RewriteCond %{REQUEST_FILENAME} !-f
  8. RewriteCond %{REQUEST_FILENAME} !-d
  9. RewriteRule . /backend.php [L]
  10. </IfModule>
  11. DirectoryIndex backend.php
  12. </Location>
  13.  
  14. </VirtualHost>
Add Comment
Please, Sign In to add comment