Browse Source
			
			
			Fix loading of .woff2 files in .htaccess
			
				Signed-off-by: Julius Härtl <jus@bitgrid.net>
			
			
				pull/12518/head
			
			
		 
		
			
				
					
						 Julius Härtl
					
					7 years ago
						Julius Härtl
					
					7 years ago
					
				 
				
			 
		 
		
			
				
				  
				  No known key found for this signature in database
				  
				  	
						GPG Key ID: 4C614C6ED2CDE6DF
				  	
				  
				
			
		
		
		
	
		
			
				 2 changed files with 
2 additions and 
2 deletions
			 
			
		 
		
			
				- 
					
					
					 
					.htaccess
				
- 
					
					
					 
					lib/private/Setup.php
				
					
					
						
							
								
									
										
											
	
		
			
				|  | @ -26,7 +26,7 @@ | 
		
	
		
			
				|  |  |   </FilesMatch> |  |  |   </FilesMatch> | 
		
	
		
			
				|  |  | 
 |  |  | 
 | 
		
	
		
			
				|  |  |   # Let browsers cache WOFF files for a week |  |  |   # Let browsers cache WOFF files for a week | 
		
	
		
			
				|  |  |   <FilesMatch "\.woff$"> |  |  |  | 
		
	
		
			
				|  |  |  |  |  |   <FilesMatch "\.woff2?$"> | 
		
	
		
			
				|  |  |     Header set Cache-Control "max-age=604800" |  |  |     Header set Cache-Control "max-age=604800" | 
		
	
		
			
				|  |  |   </FilesMatch> |  |  |   </FilesMatch> | 
		
	
		
			
				|  |  | </IfModule> |  |  | </IfModule> | 
		
	
	
		
			
				|  | 
 | 
		
	
										
									
								
							
						 
					 
				 
			
		
			
				
					
					
						
							
								
									
										
											
	
		
			
				|  | @ -504,7 +504,7 @@ class Setup { | 
		
	
		
			
				|  |  | 			$content .= "\n  Options -MultiViews"; |  |  | 			$content .= "\n  Options -MultiViews"; | 
		
	
		
			
				|  |  | 			$content .= "\n  RewriteRule ^core/js/oc.js$ index.php [PT,E=PATH_INFO:$1]"; |  |  | 			$content .= "\n  RewriteRule ^core/js/oc.js$ index.php [PT,E=PATH_INFO:$1]"; | 
		
	
		
			
				|  |  | 			$content .= "\n  RewriteRule ^core/preview.png$ index.php [PT,E=PATH_INFO:$1]"; |  |  | 			$content .= "\n  RewriteRule ^core/preview.png$ index.php [PT,E=PATH_INFO:$1]"; | 
		
	
		
			
				|  |  | 			$content .= "\n  RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$"; |  |  |  | 
		
	
		
			
				|  |  |  |  |  | 			$content .= "\n  RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff2?|ico|jpg|jpeg)$"; | 
		
	
		
			
				|  |  | 			$content .= "\n  RewriteCond %{REQUEST_FILENAME} !core/img/favicon.ico$"; |  |  | 			$content .= "\n  RewriteCond %{REQUEST_FILENAME} !core/img/favicon.ico$"; | 
		
	
		
			
				|  |  | 			$content .= "\n  RewriteCond %{REQUEST_FILENAME} !core/img/manifest.json$"; |  |  | 			$content .= "\n  RewriteCond %{REQUEST_FILENAME} !core/img/manifest.json$"; | 
		
	
		
			
				|  |  | 			$content .= "\n  RewriteCond %{REQUEST_FILENAME} !/remote.php"; |  |  | 			$content .= "\n  RewriteCond %{REQUEST_FILENAME} !/remote.php"; | 
		
	
	
		
			
				|  | 
 |