You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							591 B
						
					
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							591 B
						
					
					
				# Standard Declaration Procedures for Imeji System
 | 
						|
ErrorDocument 403 /403.php
 | 
						|
ErrorDocument 404 /404.php
 | 
						|
Options -Indexes
 | 
						|
 | 
						|
# HTTPS Redirection
 | 
						|
RewriteEngine On
 | 
						|
RewriteCond %{HTTPS} off
 | 
						|
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
 | 
						|
 | 
						|
# Hackerbots Prevention
 | 
						|
RewriteEngine on
 | 
						|
RewriteCond %{HTTP_USER_AGENT} ^ZmEu [OR]
 | 
						|
RewriteCond %{HTTP_USER_AGENT} (.*)Msqq(.*)
 | 
						|
RewriteRule .* http://www.urbandictionary.com/define.php?term=fuck+you [R=301,L]
 | 
						|
 | 
						|
#Allow linking asset elemets across subdomains
 | 
						|
<IfModule mod_headers.c>
 | 
						|
    Header set Access-Control-Allow-Origin "*"
 | 
						|
</IfModule>
 | 
						|
 |