Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // snippet from utility_helper.php
  2. function asset_url()
  3. {
  4. return base_url() . 'assets';
  5. }
  6.  
  7. // snippet from autoload.php
  8. $autoload['helper'] = array('url', 'utility');
  9.  
  10. Options +FollowSymLinks
  11. RewriteEngine On
  12. RewriteBase /app/main/build/www
  13. RewriteRule ^$ index.php [L]
  14. RewriteCond %{REQUEST_FILENAME} !-d
  15. RewriteCond %{REQUEST_FILENAME} !-f
  16. RewriteCond $1 !^(index.php|robots.txt|favicon.ico)
  17. RewriteRule ^(.*)$ index.php?/$1 [L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement