-1

我在 $url 中有两个 URL 模式结构

  1. news.oxo.com/site/data/html_dir/2013/05/25/2013052500007.html
  2. salute.com/arti/society/health/588947.html

并想将它们更改为

  1. m.oxo.com/article.html?contid=2013052500007
  2. m.salute.com/article.html?contid=2013052500007

我试过了

<?php $url_m = preg_replace("salute.com","m.salute.com",$url); ?>
<?php echo $url_m; ?>

我想我完全迷路了 -_-;;;;

任何帮助都可能受到高度赞赏。

4

2 回答 2

1

谢谢绝对零。我想将您的 ID 乘以无限 :)

我已经尝试过你的答案,但它不起作用。所以我对它做了一点调整。在继续之前,我应该进一步澄清我的情况,以帮助这篇文章的读者。

我在 PHP 中有一个变量 $urls 。这是用于将用户发送到目标页面的链接 url。在这个变量中,有很多模式,包括这两个:

news.oxo.com/site/data/html_dir/2013/05/25/2013052500007.html salute.com/arti/society/health/588947.html

通过您的回答和我的调整,我设法将用户发送到移动页面。

$urls = get_post_link(~~~~~);
//patterns for m.oxo
$replacements[0] = 'm.oxo.com/article.html?contid=$1';
$patterns[0] = "!news.oxo.com/site/data/html_dir/[0-9]{4}/[0-9]{2}/[0-9]{2}/([0-9]+)\.html$!";

//patterns for m.salute 
$replacements[1] = 'm.salute.com/article.html?contid=$1';
$patterns[1] = '!salute\.com/[^/]+/[^/]+/[^/]+/([0-9]+)\.html$!';

$url = preg_replace($patterns,$replacements,$urls);

关于这个问题,我还有一个问题。也许通过打开另一个问题来发布它是正确的,但由于新问题与旧问题密切相关,所以我把它放在这里。

新问题是应该使用什么替换和模式来替换

kr.hello.feedsportal.com/c/34762/f/640634/s/2c6bcfa2/l/0L0Shani0Bco0Bkr0Carti0Cpolitics0Cpolitics0Igeneral0C589130A0Bhtml/story01.htm

www.hello.co.kr/arti/society/society_general/589159.html

谢谢!

于 2013-05-27T02:55:46.413 回答
0

如果您负责这两个 URL 并使用 Apache,您可以使用以下方式处理旧 Apache 服务器中的旧地址.htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} ^news.oxo.com$
RewriteRule ^site/data/html_dir/[0-9]{4}/[0-9]{2}/[0-9]{2}/([0-9]+)\.html$ http://m.oxo.com/article.html?contid=$1 [R=301,L]

RewriteCond %{HTTP_HOST} ^(www\.)?salute.com$
RewriteRule ^[^/]+/[^/]+/[^/]+/([0-9]+)\.html$ http://m.salute.com/article.html?contid=$1 [R=301,L]

如果您不负责并且只想在 PHP 中重写 URL(例如,如果您要更改数据库中的链接),您可以这样做:

<?php
$original_URLs[0] = "news.oxo.com/site/data/html_dir/2013/05/25/2013052500007.html";
$original_URLs[1] = "salute.com/arti/society/health/588947.html";

//patterns for m.oxo
$replacements[0] = 'm.oxo.com/article.html?contid=$1';
$patterns[0] = "!news.oxo.com/site/data/html_dir/[0-9]{4}/[0-9]{2}/[0-9]{2}/([0-9]+)\.html$!";

//patterns for m.salute 
$replacements[1] = 'm.salute.com/article.html?contid=$1';
$patterns[1] = '!salute\.com/[^/]+/[^/]+/[^/]+/([0-9]+)\.html$!';


foreach($original_URLs as $key=>$url){
    echo "<pre>".preg_replace($patterns,$replacements,$url)."</pre>";
}
?>

如果您尝试替换嵌入在文章之类的内容中的链接,也可以用字符串替换替换 foreach。

echo "preg_replace($patterns,$replacements,$some_article);
于 2013-05-25T04:26:05.683 回答