mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-01 03:26:36 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			741 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			741 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * MIME aliases.
 | |
|  *
 | |
|  * This file contains aliases for MIME types.
 | |
|  *
 | |
|  * All extra changes made to this file must be comitted to /build/controllers/MimeTypeController.php
 | |
|  * otherwise they will be lost on next build.
 | |
|  */
 | |
| return [
 | |
|     'text/rtf' => 'application/rtf',
 | |
|     'text/xml' => 'application/xml',
 | |
|     'image/svg' => 'image/svg+xml',
 | |
|     'image/x-bmp' => 'image/bmp',
 | |
|     'image/x-bitmap' => 'image/bmp',
 | |
|     'image/x-xbitmap' => 'image/bmp',
 | |
|     'image/x-win-bitmap' => 'image/bmp',
 | |
|     'image/x-windows-bmp' => 'image/bmp',
 | |
|     'image/ms-bmp' => 'image/bmp',
 | |
|     'image/x-ms-bmp' => 'image/bmp',
 | |
|     'application/bmp' => 'image/bmp',
 | |
|     'application/x-bmp' => 'image/bmp',
 | |
|     'application/x-win-bitmap' => 'image/bmp',
 | |
| ];
 | 
