Axnman: Browser erkennen und umleiten.

Beitrag lesen

Sind irgendwelche Zeichen vor der Deklaration zu finden?

Nein. Habe gerade noch einmal die Deklaration ausgetauscht. Hier einfach mal mein kompletter Header:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de">

<head>
<title>AND ACTION!</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />

<link rel="stylesheet" href="http://www.axnman.com/wordpress/wp-content/themes/axnman2/style.css" type="text/css" />  
<!--[if IE 6]>  
	<link rel="stylesheet" type="text/css" href="http://www.axnman.com/wordpress/wp-content/themes/axnman2/ie-win.css" />  
<![endif]-->  

<?php wp\_get\_archives('type=monthly&format=link'); ?>  

<?php wp\_head(); ?>  

</head>

<?php
$page = $_SERVER['REQUEST_URI'];
$page = str_replace("/","",$page);
$page = str_replace(".php","",$page);
$page = str_replace("?s=","",$page);
$page = $page ? $page : 'default'
?>

<body id="<?php echo $page ?>">

<div id="navigation">  

	<div id="nav-home">  
		<a href="/wordpress"></a>  
	</div>  
	  
	<div id="nav-aural">  
		<a href="http://www.axnman.com/wordpress/aural"></a>  
	</div>  
	  
	<div id="nav-visual">  
		<a href="http://www.axnman.com/wordpress/visual"></a>  
	</div>  
	  
	<div id="nav-about">  
		<a href="http://www.axnman.com/wordpress/about"></a>  
	</div>  
	  
	<div id="nav-kontakt">  
		<a href="http://www.axnman.com/wordpress/contact" rel="shadowbox;player=iframe;width=280;height=590;"></a>  
	</div>  

</div>  

LG - Florian