rodro1

htaccess Codigniter REMOVE index.php

Mar 31st, 2018
54
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>
Add Comment
Please, Sign In to add comment