Guest User

Untitled

a guest
Apr 26th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <IfModule mod_rewrite.c>
  2. Options Indexes FollowSymLinks
  3. RewriteEngine On
  4. RewriteBase /hris/
  5. RewriteRule ^index.html$ - [L]
  6. RewriteCond %{REQUEST_FILENAME} !-f
  7. RewriteCond %{REQUEST_FILENAME} !-d
  8. RewriteRule . index.html [L]
  9. </IfModule>
  10.  
  11. <IfModule mod_rewrite.c>
  12. Options Indexes FollowSymLinks
  13. RewriteEngine On
  14. RewriteRule ^index.html$ - [L]
  15. RewriteCond %{REQUEST_FILENAME} !-f
  16. RewriteCond %{REQUEST_FILENAME} !-d
  17. RewriteRule . /index.html [L]
  18. </IfModule>
  19.  
  20. <IfModule mod_rewrite.c>
  21. RewriteEngine on
  22. RewriteCond %{REQUEST_FILENAME} -s [OR]
  23. RewriteCond %{REQUEST_FILENAME} -l [OR]
  24. RewriteCond %{REQUEST_FILENAME} -d
  25. RewriteRule ^.*$ - [NC,L]
  26. RewriteRule ^(.*) index.html [NC,L]
  27. </IfModule>
Add Comment
Please, Sign In to add comment