If u ave apache server use mod rewrite, your page is:
hppp://site[dot]com/index.php?page=news&id=1
Put in your .htaccess:
RewriteEngine On
RewriteRule ^index/([^/]+)/([^/]+).html index.php?page=$1&id=$2 [L]
Your new url is:
hppp://site[dot]com/index/news/1.html
Now set caching for 2 hours html files, in .htaccess put (for html/
htm):
<FilesMatch "\.(html|htm)$">
Header set Cache-Control "max-age=7200, must-revalidate"
</FilesMatch>
p.s
sorry for english italiano :)
p.s. 2
big resource ->
http://www.askapache.com/htaccess/apache-speed-cache-control.html