8 lines
233 B
ApacheConf
8 lines
233 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
RewriteEngine on
|
|
DirectoryIndex index.html yellow.php
|
|
RewriteRule ^(content|system)/ error [L]
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^ yellow.php [L]
|
|
</IfModule>
|