Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. This One is in my /myapp/public/.htaccess
  2.  
  3. #Options +FollowSymlinks
  4. RewriteEngine On
  5. RewriteCond %{REQUEST_FILENAME} -s [OR]
  6. RewriteCond %{REQUEST_FILENAME} -l [OR]
  7. RewriteCond %{REQUEST_FILENAME} -d
  8. RewriteRule ^.*$ - [NC,L]
  9. RewriteRule ^.*$ index.php [NC,L]
  10.  
  11. This One is in my /myapp/.htacess
  12.  
  13. SetEnv APPLICATION_ENV development
  14. RewriteEngine On
  15. #RewriteBase /myapp/
  16. RewriteRule .* index.php
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement