我想知道是否有可能重写一个为在 htaccess 中编写的重写而设计的 URL
例如
我有网址: http ://example.com/page.php?page=5&action=something
但我想将 URL 更改为:example.com/page/5/something
这只是针对href,htaccess位已解决。
我想知道是否有可能重写一个为在 htaccess 中编写的重写而设计的 URL
例如
我有网址: http ://example.com/page.php?page=5&action=something
但我想将 URL 更改为:example.com/page/5/something
这只是针对href,htaccess位已解决。
function rewritelink($link){
$link = str_replace('.php','', $link);
$pattern = "/\?[^=]*=/";
$replacement = '/';
$link = preg_replace($pattern, $replacement, $link);
$pattern = "/\&[^=]*=/";
$replacement = '/';
$link = preg_replace($pattern, $replacement, $link);
return $link;
}