Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Alias /webs c:webs
  2. <Directory /webs>
  3. AllowOverride All
  4. </Directory>
  5.  
  6. RewriteEngine On
  7. RewriteCond %{REQUEST_URI} !(.css|.js|.png|.jpg|.gif|robots.txt)$ [NC]
  8. RewriteCond %{REQUEST_FILENAME} !-f
  9. RewriteCond %{REQUEST_FILENAME} !-d
  10. RewriteRule ^(.*)$ index.php?params=$1 [L,QSA]
  11.  
  12. <Files "test">
  13. Order Allow,Deny
  14. Allow from all
  15. </Files>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement