Guest User

Untitled

a guest
Feb 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. GNU nano 1.3.12 File: .htaccess
  2.  
  3. # Turn on URL rewriting
  4. RewriteEngine On
  5. # Installation directory
  6. RewriteBase /snspbx
  7. # Protect hidden files from being viewed
  8. <Files .*>
  9. Order Deny,Allow
  10. Deny From All
  11. </Files>
  12. # Protect application and system files from being viewed
  13. RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
  14. # Allow any files or directories that exist to be displayed directly
  15. RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d
  16. # Rewrite all other URLs to index.php/URL
  17. RewriteRule .* index.php/$0 [PT]
  18.  
  19.  
  20.  
  21.  
  22. [ Read 15 lines ]
  23. ^G Get Help ^O WriteOut ^R Read File ^Y Prev Page ^K Cut Text ^C Cur Pos
  24. ^X Exit ^J Justify ^W Where Is ^V Next Page ^U UnCut Text ^T To Spell
Add Comment
Please, Sign In to add comment