in der /etc/apache2/sites-available default diese zeilen anpassen (DocumentRoot,Directory) 
 
<VirtualHost *> 
	ServerAdmin webmaster@localhost 
	 
	DocumentRoot /var/www/ 
	<Directory /> 
		Options FollowSymLinks 
		AllowOverride None 
	</Directory> 
	<Directory /var/www/> 
		Options Indexes FollowSymLinks MultiViews 
		AllowOverride None 
		Order allow,deny 
		allow from all 
		# This directive allows us to have apache2's default start page 
                # in /apache2-default/, but still have / go to the right place 
                RedirectMatch ^/$ /apache2-default/ 
	</Directory> 
 
 
apache neustarten nicht vergessen^^
		 
		
		
		
		
		
		
		
		
			
				  
				
					
						Ge?ndert von phenom (09.08.2009 um 09:58 Uhr)
					
					
				
			
		
		
	 |