8 lines
252 B
PHP
8 lines
252 B
PHP
<IfModule mod_rewrite.c>
|
|
RewriteEngine on
|
|
RewriteCond %{ENV:REDIRECT_STATUS} !=503
|
|
RewriteCond %{REQUEST_URI} !\.(jpe?g?|png|gif|ico|svg|css)$ [NC]
|
|
RewriteCond %{REQUEST_URI} !robots\.txt$ [NC]
|
|
RewriteRule ^ - [L,R=503]
|
|
</IfModule>
|