我正在尝试使用 PHP 制作网站应用程序。我想做一些专业的东西。我想使用 url 掩码来创建类似site/xyz/hello
而不是site/abc.php?id=1&content=hello&user=xyz
.
我知道使用 mod_rewrite 进行 URL 屏蔽,但我不想通过switch
在 PHP 中使用前置条件来包含单个页面。我在 handler.php 文件中使用了如下代码,但在这种情况下,我必须添加所有条件
$plink = explode('/',$_GET['p']);
//starts url masking
if (isset($_GET['p']))
{
switch($_GET['p'])
{
// pages set for common interface
case 'home':
include "home.php";
break;
case 'about':
include "about.php";
break;
case 'terms':
include "terms.php";
break;
我想让它像 Wordpress、Drupal 和 Joomla 一样动态化。我想要来自数据库的自动 URL。只有布局将被修复。所以我想要教程和任何基于专业级 PHP 的材料——所有的东西都是我自己通过在线教程学到的。如果有人能给我任何东西,请告诉我。我想创建一个类似 phpacadem 的网站,可学习和类似。