使用 PHP 进行 URL 重写
URL 重写将 URL 转换为更易读和用户友好的格式。本指南探讨了在 PHP 中实现 URL 重写的两种方法:使用 .htaccess 的 mod_rewrite 和基于 PHP 的方法。
.htaccess 与 mod_rewrite 的路由
要使用 mod_rewrite,在根目录中创建一个 .htaccess 文件并包含以下:
RewriteEngine on RewriteRule ^/?Some-text-goes-here/([0-9]+)$ /picture.php?id=
这会将所有与正则表达式匹配的 URL 重定向到 picture.php,并将 ID 作为参数传递。
PHP 路由
要使用 PHP,请修改 .htaccess 文件:
FallbackResource /index.php
中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); break; ... default: header('HTTP/1.1 404 Not Found'); Show404Error(); }
这种方法在处理复杂的 URL 结构方面提供了更大的灵活性。
以上是如何使用 .htaccess 和基于 PHP 的方法在 PHP 中实现 URL 重写?的详细内容。更多信息请关注PHP中文网其他相关文章!