使用 PHP 进行 URL 重写
开发 Web 应用程序时,通常需要创建简洁且具有描述性的用户友好 URL。实现此目的的常见方法是通过 URL 重写。
在这种情况下,URL 重写涉及修改 URL 的结构,使其更具可读性和凝聚力。例如,您的 URL 可能显示为:
url.com/picture.php?id=51
您可以将此 URL 修改为:
picture.php/Some-text-goes-here/51
此重写的 URL 保留了原始 URL 的功能,但提高了可读性.
要在 PHP 中实现 URL 重写,您可以利用两个主要方法方法:
使用 mod_rewrite 的 .htaccess 路由
RewriteEngine on RewriteRule ^/?Some-text-goes-here/([0-9]+)$ /picture.php?id=
这个代码启用 Apache 的 mod_rewrite 模块,并设置一条规则,将与正则表达式匹配的 URL 重写为所需的格式。
PHP 路由
FallbackResource /index.php
$path = ltrim($_SERVER['REQUEST_URI'], '/'); $elements = explode('/', $path); if (empty($elements[0])) { ShowHomepage(); } else switch (array_shift($elements)) { case 'Some-text-goes-here': ShowPicture($elements); // passes rest of parameters to internal function break; case 'more': ... default: header('HTTP/1.1 404 Not Found'); Show404Error(); }
此代码解析请求的URI并引导向适当的内部功能发出请求。 “Some-text-goes-here”案例将处理重写的 URL。
选择最合适的方法取决于您项目的具体要求。 .htaccess 方法实现起来更简单,而 PHP 路由提供了更大的灵活性。
以上是如何使用 PHP 重写 URL 以提高可读性和功能?的详细内容。更多信息请关注PHP中文网其他相关文章!