yellow/.htaccess
2015-01-19 22:02:46 +01:00

18 lines
395 B
ApacheConf

<IfModule mod_rewrite.c>
RewriteEngine on
# Yellow dynamic pages
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ yellow.php [L]
DirectoryIndex index.html yellow.php
RewriteRule ^(cache|content|system)/ error [L]
# Yellow static pages
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^[^\.]+$ - [T=text/html,L]
ErrorDocument 404 /error404.html
</IfModule>