Advertisement
rodro1

.htaccess codigniter

Mar 18th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <IfModule mod_rewrite.c>
  2.  
  3. Options +FollowSymLinks
  4. RewriteEngine on
  5.  
  6. # Send request via index.php
  7. RewriteCond %{REQUEST_FILENAME} !-f
  8. RewriteCond %{REQUEST_FILENAME} !-d
  9. RewriteRule ^(.*)$ index.php/$1 [L]
  10.  
  11. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement