yellow/.htaccess

9 lines
233 B
ApacheConf
Raw Permalink 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
2022-04-12 17:46:50 +00:00
RewriteRule ^(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>