yellow/.htaccess

10 lines
240 B
ApacheConf
Raw Normal View History

2013-04-07 18:04:09 +00:00
<IfModule mod_rewrite.c>
RewriteEngine on
2015-11-20 13:33:22 +00:00
DirectoryIndex index.html yellow.php
RewriteRule ^(cache|content|system)/ error [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
2013-06-07 20:01:12 +00:00
RewriteRule ^ yellow.php [L]
2013-04-07 18:04:09 +00:00
</IfModule>