所以我想我需要为此提交一个新问题......
这是我的老问题:PHP - 获取路径减去根
我需要一种 PHP 方法来将 URL 设为以下任何一种......
http://kenthomes.net/plan_detail.php?mod=39
http://kenthomes.net/Amelia-Cove
离开我之后得到一切……
"plan_detail.php?mod=39" // If there is no alias for that page
或者
"Amelia-Cove" // If that page has an alias being applied
实际上,由于别名的原因,它们是同一个页面,但并非所有这些页面都有与之关联的别名,例如...
http://kenthomes.net/plan_detail.php?mod=52
不像……
http://kenthomes.net/Amelia-Cove
目前我正在使用...
trim($_SERVER['REQUEST_URI'],'/')
这给了我...
"Amelia-Cove" // Which is fine.
或者
"plan_detail.php" // Which is not okay.
我需要..
"Amelia-Cove" // Which is fine.
或者
"plan_detail.php?mod=39" // Which is fine.
我该怎么做呢?