Đây là demo
Tạo file .htaccess nếu có rồi thì thôi, sau đó dán nội dung này vào:
Tiếp file index.php dán code này vào:
Tạo file .htaccess nếu có rồi thì thôi, sau đó dán nội dung này vào:
PHP:
RewriteEngine On
RewriteBase /
RewriteRule ^(.*).(html|xhtml|xml)$ /index.php?file=$1.$2 [L]
ErrorDocument 404 http://tuoitreit.vn
ErrorDocument 404 http://tuoitreit.vn
ErrorDocument 500 http://tuoitreit.vn
Tiếp file index.php dán code này vào:
PHP:
<?php
error_reporting(0);
$url = $_GET['file'];
$head = 'phần head';
$foot = 'phần foot';
if(file_exists($url)){
$url = file_get_contents($url);
$url = str_replace('<body>', '<body>'.$head, $url);
$url = str_replace('</body>', $foot.'</body>', $url);
echo $url;
}else{
$url = file_get_contents('index.html');
$url = str_replace('<body>', '<body>'.$head, $url);
$url = str_replace('</body>', $foot.'</body>', $url);
echo $url;
}
?>