Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. # use mod_rewrite for pretty URL support
  2. RewriteEngine on
  3. RewriteBase /scolsy/web
  4. # If a directory or a file exists, use the request directly
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond %{REQUEST_FILENAME} !-d
  7. # Otherwise forward the request to index.php
  8. RewriteRule . index.php
  9.  
  10. # ...other settings...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement