PHP 有什么好的函数可以使用 Apache 的 mod_rewrite 来重写 URL?
$url="semantic/path/to/page";
$url=mod_rewrite_url($url,"path/to/.htaccess");
//$url is index.php?page_id=45
我的想法是简单地解析 .htaccess 文件并将其与带有 url 的字符串进行比较,但我对一些内置函数更感兴趣,但我怀疑它是否存在。
PHP 有什么好的函数可以使用 Apache 的 mod_rewrite 来重写 URL?
$url="semantic/path/to/page";
$url=mod_rewrite_url($url,"path/to/.htaccess");
//$url is index.php?page_id=45
我的想法是简单地解析 .htaccess 文件并将其与带有 url 的字符串进行比较,但我对一些内置函数更感兴趣,但我怀疑它是否存在。