Guest User

Untitled

a guest
Feb 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. #DirectoryIndex index.php index.html
  2. #Options +FollowSymLinks
  3. #RewriteBase /relative/web/path/
  4.  
  5. Options +Indexes
  6.  
  7. <IfModule mod_rewrite.c>
  8. RewriteEngine On
  9. RewriteCond %{REQUEST_FILENAME} -f [OR]
  10. RewriteCond %{REQUEST_FILENAME} -d
  11. RewriteRule ^(.+) - [PT,L]
  12.  
  13. # RewriteRule ^(.*) index.php
  14. </IfModule>
  15.  
  16. #php_value register_globals 0
  17.  
  18. # BEGIN WordPress
  19. <IfModule mod_rewrite.c>
  20. RewriteEngine On
  21. RewriteBase /
  22. RewriteCond %{REQUEST_FILENAME} !-f
  23. RewriteCond %{REQUEST_FILENAME} !-d
  24. RewriteRule . /index.php [L]
  25. </IfModule>
  26.  
  27. # END WordPress
Add Comment
Please, Sign In to add comment