19 lines
		
	
	
		
			513 B
		
	
	
	
		
			ApacheConf
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			513 B
		
	
	
	
		
			ApacheConf
		
	
	
	
	
	
| php_flag display_errors on
 | |
| Options -Indexes
 | |
| 
 | |
| DirectorySlash Off
 | |
| 
 | |
| SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
 | |
| RewriteEngine On
 | |
| RewriteRule ^(api(/.*)?)$ /index.php?api=$1 [L,QSA]
 | |
| 
 | |
| RewriteEngine On
 | |
| RewriteOptions AllowNoSlash
 | |
| RewriteRule ^((\.idea|\.git|src|test|Site|Core|docker|files)(/.*)?)$ /index.php?site=$1 [L,QSA]
 | |
| 
 | |
| FallbackResource /index.php
 | |
| 
 | |
| ErrorDocument 400 /index.php?error=400
 | |
| ErrorDocument 403 /index.php?error=403
 | |
| ErrorDocument 404 /index.php?error=404
 | |
| ErrorDocument 500 /index.php?error=500 |