Advertisement
gurumutant

.htaccess untuk pretty URL di codeigniter

Jan 24th, 2019
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. #RewriteBase /
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteCond %{REQUEST_FILENAME} !-d
  6. RewriteRule ^(.*)$ index.php?/$1 [L]
  7. </IfModule>
  8.  
  9. <IfModule !mod_rewrite.c>
  10. ErrorDocument 404 /index.php
  11. </IfModule>
  12.  
  13. <IfModule mod_env.c>
  14. SetEnv CI_ENV production
  15. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement