в папке var/www создал папку и скопировал файлы сайта (пересел на убунту 13.10, а файлы скопировал с винды) ну так вот ни один пхп файл не открывается, браузер выдает пустую страничку. Создал 2 папку и в ней простенький index.php, всё работает! Гляньте плз, вот он код файла index.php сайта: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv=«Content-Type» content=«text/html; charset=utf-8» /> <title>Веб-студия</title> <link href='css/template.css' rel='stylesheet' type='text/css'> <script type=«text/javascript» src="http://code.jquery.com/jquery-1.9.1.js"></script> <script type=«text/javascript» src=«js/jquery.js»></script> <script type=«text/javascript» src=«js/jquery.onepage-scroll.js»></script> <script type=«text/javascript» src=«js/jquery.rotate.1-1.js»></script> <script type=«text/javascript» src=«js/easing.js»></script> <script type=«text/javascript» src=«js/init.js»></script> <script src=«js/jquery.roundabout.js»></script> <link href='css/menu.css' rel=«stylesheet» type=«text/css»/> <link href='css/onepage-scroll.css' rel='stylesheet' type='text/css'/> </head>
<body> <div class=«wrapper»> <?php
include ('menu.php');
?> <?php include('gear1.php'); ?> <div class=«main»> <section id=«number»> <?php
include ('main.php');
?>
</section> <section id=«number»> <?php
include ('uslugi.php');
?> </section> <section id=«number»> <?php
include ('portfolio.php')
?> </section> <section id=«number» > <?php
include ('kontakti.php');
?> </section> <section id=«number»> <?php
include ('about.php');
?> </section> </div> </div> </body> </html>