php 重写网址/路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 重写网址/路径相关的知识,希望对你有一定的参考价值。
class PathProcessor implements InboundPathProcessorInterface, OutboundPathProcessorInterface {
public function processInbound($path, Request $request) {
if (strpos($path, '/follower') === 0) {
$path = preg_replace('#^/follower#', '/member', $path);
}
return $path;
}
public function processOutbound($path, &$options = array(), Request $request = NULL, BubbleableMetadata $bubbleable_metadata = NULL) {
if (strpos($path, '/member') === 0) {
$path = preg_replace('#^/member#', '/follower', $path);
}
return $path;
}
}
以上是关于php 重写网址/路径的主要内容,如果未能解决你的问题,请参考以下文章
php FacetWP - 将搜索网址重写为目录
php 重写自定义帖子类型网址
php 网址重写自定义帖子类型的项目divi
URL重写会删除网址结尾
网址重写破坏了指向 css 的链接
重写 php 应用程序以获得 seo 友好的 url