We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 74
    • 74 Posts
    I need to change output of all href in search results
    from
    www.site/one/two/result1.html
    to
    www.site/ru/one/two/result1.html
    in non-ajax mode.

    It must be something like this:
     href="www.site/ru/[+as.Rest_Of_Link+]" 

    It`s possible?
      • 74
      • 74 Posts
      Found it!
      In search.calss.inc.php
      I change line 1534:
      $this->varResult['resultLink'] = $resultLink;

      to:
      $this->varResult['resultLink'] = 'ru'.$resultLink;