<div id="c548" class="csc-default" >######
#
# Snippets by http://typo3.intervation.de/snippets.html
#
####

<?php

class user_pageNotFound {
	
	function pageNotFound($param, $ref) {
		
		if (preg_match('#^/snippets#', $param['currentUrl'])) {
		
			header("HTTP/1.1 301 Moved Permanently"); 
			header("Location: http://typo3.intervation.de/snippets.html?error=snipptes");
	
		}
		else {
		
			header("HTTP/1.1 301 Moved Permanently"); 
			header("Location: http://typo3.intervation.de/index.php?id=214");
		
		}
	
	}

}

?></div>