yellow/.htaccess

18 lines
392 B
ApacheConf
Raw Normal View History

2013-04-07 18:04:09 +00:00
<IfModule mod_rewrite.c>
RewriteEngine on
2014-04-10 13:41:41 +00:00
# Yellow dynamic pages
2013-04-07 18:04:09 +00:00
RewriteCond %{REQUEST_FILENAME} !-f
2013-04-14 22:41:04 +00:00
RewriteCond %{REQUEST_FILENAME} !-d
2013-06-07 20:01:12 +00:00
RewriteRule ^ yellow.php [L]
2014-04-10 13:41:41 +00:00
DirectoryIndex index.html yellow.php
RewriteRule ^(cache|content|system)/ error [L]
2014-04-10 13:41:41 +00:00
# Yellow static pages
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^[^\.]+$ - [T=text/html,L]
2015-04-29 07:26:48 +00:00
ErrorDocument 404 /error.html
2013-04-07 18:04:09 +00:00
</IfModule>