我的文檔結構:動態更改元/ title標籤,根據頁面上的JS
<?
include('head.php');
include('header.php');
include('index_content.php');
include('footer.php');
include('form.php');
include('js.php');
?>
當我創建了新的一頁,我用這個骨架只改變頁面的內容。但對於SEO優化,它也有必要改變標題和元標籤。根據頁面,是否可以使用JavaScript動態更改此設置。或者是最好不要洗澡,寫這樣的事:
<?
include('head.php'); //beginning of the <head> tag
?>
<title>Some title</title>
<meta name="description" content="some description">
<meta name="keywords" content="some keywords">
<?
include('header.php'); - //end of </head> tag
include('index_content.php');
include('footer.php');
include('form.php');
include('js.php');
?>
廣東話你'「>'? – Hemal
您是否使用頁面內容或靜態頁面的數據庫? –
我用https://prerender.io/在我的案例中 –