yellow/.htaccess

18 lines
476 B
ApacheConf
Raw Normal View History

2013-04-07 18:04:09 +00:00
# Yellow .htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
# RewriteBase /yellow
2013-04-14 22:41:04 +00:00
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^(content|system)/ error404 [L]
RewriteCond %{REQUEST_URI} \.(css|js|png)$
RewriteRule ^media/plugins/(core_.+) system/core/$1 [L]
RewriteCond %{REQUEST_URI} \.(css|js|png)$
RewriteRule ^media/plugins/(.+) system/plugins/$1 [L]
2013-04-07 18:04:09 +00:00
RewriteCond %{REQUEST_FILENAME} !-f
2013-04-14 22:41:04 +00:00
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]
2013-04-07 18:04:09 +00:00
</IfModule>