1

希望修改 Yahoo Answers 链接以删除某些部分,仅保存qid并替换indexanswer.

所以这:

http://answers.yahoo.com/question/index;_ylt=AhT5ZZwbMiGWdQZDSxD1ML305nNG;_ylv=3?qid=20121004094847AAjekoj

变成这样:

http://answers.yahoo.com/question/answer?qid=20121004094847AAjekoj

我知道有一些方法可以重写链接,.htaccess但在这种情况下,它需要是一个 Greasemonkey 脚本,因为该任务将在我访问的网站上完成,而不是在我的网站上完成。

4

3 回答 3

2

您在这里需要的模式是这样的:

/(http:\/\/answers.yahoo.com\/questions\/)index.*(?qid=.*)$/i

你会用这个替换它:

/$1answer$2/

不过,我对 Greasemonkey 的了解并不多,所以我不能给你更多的信息。希望对 Greasemonkey 有更多了解的人出现并提供更好的答案。

于 2012-10-04T17:02:05.243 回答
1

一般来说,应该这样做(完整的 GM 脚本):

// ==UserScript==
// @name     _Replace yahoo-answers links
// @include  http://answers.yahoo.com/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @grant    GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change introduced
    in GM 1.0.   It restores the sandbox.
*/
var targLinks   = $("a[href*='question/index']");
targLinks.each ( function () {
    if (/\bqid=\w+/i.test (this.href) ) {
        var newHref = this.href

        var newPath = this.pathname.replace (/\/question\/index.+$/, "/question/answer");
        var newURL  = this.protocol + "//"
                    + this.host
                    + newPath
                    + this.search
                    + this.hash
                    ;
        this.href   = newURL;
    }
} );
于 2012-10-04T17:04:27.867 回答
0

代替

/(http:\/\/answers\.yahoo\.com\/question)\/index.+[?&]qid=([^&#]+)/g

"$1/answer?quid=$2"
于 2012-10-04T17:07:03.900 回答