yellow/.htaccess
2013-12-01 12:59:07 +01:00

22 lines
592 B
ApacheConf

# Yellow .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
# RewriteBase /yellow
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^(content|system)/ error404 [L]
RewriteCond %{REQUEST_URI} \.(css|js|png|woff)$
RewriteRule ^media/plugins/(core-.+) system/core/$1 [L]
RewriteCond %{REQUEST_URI} \.(css|js|png|woff)$
RewriteRule ^media/plugins/(.+) system/plugins/$1 [L]
RewriteRule ^$ yellow.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ yellow.php [L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^[^\.]+$ - [T=text/html,L]
</IfModule>