我只有一个 index.php 文件,它使用以下方法生成其他页面:
RewriteRule ^page 1.php$ index.php?cat=a [NC]
RewriteRule ^page 2.php$ index.php?cat=b [NC]
我正在尝试使用以下代码来更改页面的标题,但它仅适用于 index.php。
<?php
$page = $_SERVER['PHP_SELF'];
if(isset($page)) {
switch($page) {
case "/index.php":
$title = "this is homepage";
break;
case "/page 1.php":
$title = "products";
break;
case "/page 2.php":
$title = "services";
break;
}
}else{
$title = "default title";
}
print "<title>$title</title>";
?>