我不能做简单,不明白什么问题。我只想创建一个漂亮的 URL。
我的链接如下所示:
www.mysite.com/coach/23/victor
我的.htaccess
文件如下所示:
RewriteEngine On
RewriteRule ^([^/]*)\.html$ /index.php?p=$1 [L]
RewriteRule ^([^/]*)/([^/]*)\.html$ /index.php?p=$1&id=$2 [L]
RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ /index.php?p=$1&id=$2&title=$3 [L]
在functions.php
文件中,我试图获取如下信息:
$page_type=$_GET['p'];
$page_type=$_GET['id'];
$page_type=$_GET['title'];
在index.php
我包含functions.php
并进行切换。
switch($page_type){
case "home": include "home.php";
break;
}