This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #php_flag display_startup_errors on | |
| #php_flag display_errors on | |
| #php_flag html_errors on | |
| <IfModule mod_rewrite.c> | |
| <IfModule mod_negotiation.c> | |
| Options -MultiViews | |
| </IfModule> | |
| RewriteEngine On |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| location ~ .(scripts|styles|images|views)/(.*)/(.*)$ { | |
| try_files $uri $uri/ /../frontend/app/$1/$2/$3; | |
| } | |
| location ~ .(scripts|styles|images|views)/(.*)$ { | |
| try_files $uri $uri/ /../frontend/app/$1/$2; | |
| } | |
| location ~ .(bower_components)/(.*)/(.*)$ { |
NewerOlder