私はこのサイトを持っており、index.phpがhtmlに組み込まれており、ホームページのみに個別のタイトル(タイトルタグ)を付ける必要がありますが、ホームページ名をindex.phpページに追加すると、すべてのページが変更されますその名前のサイトで。私はJoomla1.5を使用しています...
コード部分は次のとおりです。
<head>
<title> Home Page Title </title>
<jdoc:include type="head" />
<?php JHTML::_('behavior.mootools'); ?>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/menu.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/style.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/slideshow.css" type="text/css" />
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/vns.script.js"></script>
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/mootools.js"></script>
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/toptool.js"></script>
<!--[if lte IE 6]>
<script type="text/javascript">
var siteurl = '<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/';
window.addEvent ('load', makeTransBG);
function makeTransBG() {
fixIEPNG ($$('#toptools ul li a'), '', 'crop', 0, 0);
fixIEPNG ($$('#nav_all ul.menu li ul'), '', 'scale', 0, 0);
fixIEPNG($$('img'));
}
</script>
<style type="text/css">
#hd p.buttonheading {
margin:8px 0;
}
#nav_all ul.menu ul a {
width: 14.8em!important;
}
</style>
<![endif]-->
<style type="text/css">
body{
font-size: <?php echo $vnsfont = $this->params->get ("vnsfont"); ?>px;
}
</style>
<?php if ($vnsshowcopyright = $this->params->get('showcopyright') == 'yes') { ?>
<style type="text/css">
#cpr{
display:block;
}
</style>
<?php }else{ ?>
<style type="text/css">
#cpr{
display:none;
}
</style>
<?php } ?>
<?php if ($vnsshowcomponent = $this->params->get('showcomponent') == 'yes') { ?>
<style type="text/css">
#component{
display:block;
}
</style>
<?php }else{ ?>
<style type="text/css">
#component{
display:none;
}
</style>
<?php } ?>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/sosdmenu.css" type="text/css" />
<?php if ($vnsmenu = $this->params->get('vnsmenu') == 'moo') { ?>
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/vns.moomenu.js"></script>
<?php }else{ ?>
<?php if ($vnsmenu = $this->params->get('vnsmenu') == 'css') { ?>
<script language="javascript" type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/vns.cssmenu.js"></script>
<?php }else{ ?>
<? } ?>
<? } ?>
<?php if ($vnsmenu = $this->params->get('vnsmenu') == 'none') { ?>
<style type="text/css">
#nav_all{
display: none;
}
</style>
<?php }?>
<?php if ($this->countModules('left')==0) : ?>
<style type="text/css">
#ccenter {
width:716px;
}
</style>
<?php endif; ?>
<?php if ($this->countModules('right')==0) : ?>
<style type="text/css">
#ccenter {
width:734px;
}
</style>
<?php endif; ?>
<?php if (($this->countModules('right')==0)&&($this->countModules('left')==0)) : ?>
<style type="text/css">
#ccenter {
width:935px;
}
</style>
<?php endif; ?>
</head>