Advertisement
Guest User

Untitled

a guest
Apr 12th, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine on
  3. RewriteBase /public/
  4. RewriteRule ^index\.php$ - [L]
  5.  
  6. RewriteCond %{REQUEST_FILENAME} !-f
  7. RewriteCond %{REQUEST_FILENAME} !-d
  8.  
  9. RewriteRule ^(.*)$ /public/index.php/$1 [L]
  10. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement