私は少し迷っていますが、理解したように、あなたの質問は次のとおりです: URL http://www.example.com/username/albumsに移動したときにアルバムに正しく移動するように、URL に引数を渡すにはどうすればよいですか?
似たようなものの例を次に示します。
if (isset($_GET['page'])) {
$pageArgs = explode('/', $_GET['page']);
if(isset($pageArgs[0])) {
$username = $pageArgs[0];
} else {
header('Location: index.php');
exit();
}
$action = (isset($pageArgs[1])) ? $pageArgs[1] : false;
switch($action)
{
case 'albums':
print 'These are my albums <br/>';
break;
case 'music':
print 'This is my music! <br/>';
break;
default:
print '
<nav>
<ul>
<li><a href="'.$username.'/albums">Albums</a></li>
<li><a href="'.$username.'/music">Music</a></li>
</ul>
</nav>';
break;
}
}
これをあなたのニーズに合わせてください...
注: 引数をユーザー名ではなくページに変更したため、リライト mod ルールを更新する必要があることに注意してください。また、ページの「引数」を区切るために / を使用しました。「?」を使用できます。(確かではないと思います)もしよろしければ...
これは単純なMVCに続く
index.php
// Find which page is requested
$pageIDs = pageSelector();
// namespaced pages. You can change to real namespaces with:
// $mPage = '\\Page\\' . $pageIDs[0];
$mPage = 'Page_' . $pageIDs[0];
array_shift($pageIDs);
// Path to Template file (the static elements common to all pages like
// header, footer, logo, navigation, etc...
$templatePath = 'templates/my_template.html';
if(!empty($pageIDs))
$pageArgs = $pageIDs;
else
$pageArgs = false;
//create Page Object, the dynamic content divided by sections
//for instance, content, columnA, columnB
$page = new $mPage($pageArgs);
$template = new Template($templatePath, $page);
//Here's an example of a section
$template->addSection('subNavigation');
print $template;
// PageSelector Function
function pageSelector()
{
if (isset($_GET['page'])) {
$pIDs = explode('/', $_GET['page']);
} else {
$pIDs = array('home');
}
$pagePath = 'pages/' . $pIDs[0] . '.php';
if (file_exists($pagePath)) {
require_once($pagePath);
return $pIDs;
} else {
$pagePath = 'pages/home.php';
require_once($pagePath);
return array('home');
}
}
//Template Object
class Template
{
private $path, $page;
private $sections = array('content');
public function __construct($tPath, $page)
{
$this->path = $tPath;
$this->page = $page;
}
public function addSection($newSectionName)
{
$this->sections[] = $newSectionName;
}
public function __toString()
{
$html = file_get_contents($this->path);
foreach($this->sections as $section) {
$html = str_replace('[%%'.$section.'%%]', $this->page->show($section), $html);
}
return $html;
}
}
ファイル pages/home.php
class Page_home
{
public function __construct($args) {}
public function show($section)
{
switch($section)
{
case 'content':
return 'this is my main page';
break;
default:
return '';
break;
}
}
}
ファイル pages/user.php
class Page_user
{
private $subPage;
public function __construct($args)
{
if(isset($args[0]))
$this->username = $args[0];
else {
$this->username = false;
return;
}
if(isset($args[1]))
$this->subPage = $args[1];
else {
$this->subPage = false;
return;
}
}
public function show($section)
{
if($this->username)
{
switch($section)
{
case 'content':
$otp = 'My username is ' . $this->username . '<br/>';
$otp .= $this->showSubPage();
return $otp;
break;
case 'subNavigation':
return $this->nav();
break;
default:
return '';
break;
}
} else {
return 'username not found!';
}
}
protected function nav()
{
return
'<nav>
<ul>
<li><a href="user/'.$this->username.'/albums">Albums</a></li>
<li><a href="user/'.$this->username.'/music">Music</a></li>
</ul>
</nav>';
}
protected function showSubPage()
{
switch($this->subPage)
{
case 'albums':
return 'These are my albums <br/>';
break;
case 'music':
return 'This is my music! <br/>';
break;
}
}
}
テンプレート/my_template.html
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<div id="mainNav">myLink | Go | Here</div>
<nav id="subNav">[%%subNavigation%%]</nav>
<div id="content">[%%content%%]</div>
<footer>my (c) copyright notice</footer>
</body>
</html>