Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <IfModule mod_rewrite.c>
  2. Options +FollowSymLinks
  3. RewriteEngine on
  4. RewriteBase /subdirectory/
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond %{REQUEST_FILENAME} !-d
  7. RewriteRule ^(.*)$ index.php?$1 [L]
  8. </IfModule>
  9.  
  10. $config['base_url'] = '';
  11. $config['index_page'] = '';
  12. $config['uri_protocol'] = 'AUTO';
  13.  
  14. $route['default_controller'] = "login";
  15. $route['404_override'] = '';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement