2022-09-13 08:13:02 +00:00
<!doctype html>
< html >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" / >
2022-10-31 07:44:05 +00:00
< link rel = "stylesheet" href = "../style.css" type = "text/css" / >
2022-09-13 08:13:02 +00:00
< title > Resource redirection< / title >
< script type = "text/javascript" >
function findLang(){
let href = location.href;
for(let i=href.length-1;i>0;i--){
if('/'==href.charAt(i) & & '/'==href.charAt(i-3))
return i;
}
return 0;
}
function nav2(page){
let i = findLang();
location.href = location.href.substring(0,i+1)+page;
}
function nav2Lang(lang){
let i = findLang();
let href = location.href;
location.href = location.href.substring(0,i-2)+lang+location.href.substring(i);
}
< / script >
< / head >
< body >
< header class = 'header' >
< a class = "logo" href = "javascript:void(0)" onclick = "return nav2('index.html')" > Home< / a > < a class = "logo" href = "javascript:void(0)" onclick = "return nav2('tags/index.html')" > Tags< / a >
< a class = "logo" href = "javascript:void(0)" onclick = "return nav2Lang('zh')" > 简体中文< / a >
< nav >
< / nav >
< / header >
< br / >
< div class = "container" >
< h1 class = "title" > Resource redirection
< br >
< span class = "subtitle" > < / span >
< / h1 >
< ul class = "tags" >
< li > < a href = "../tags/redirection" > redirection< / a > < / li >
< / ul >
< p > Click the following links to append mirrors to the file " default.redirect" :< br >
< a href = "i:0gdefault.redirect::github.com::hub.fastgit.xyz%0A" > github mirror:fastgit< / a > < br >
< a href = "i:0gdefault.redirect::github.com::hub.0z.gs%0A" > github mirror 2< / a > < / p >
2023-02-20 14:03:43 +00:00
< p > < a target = "_self" href = "i:0gdefault.redirect:../../zh/searchurl/txt/redirect.cfg" > google recaptcha mirror< / a > < / p >
2022-09-13 08:13:02 +00:00
< p > Each line of the file " default.redirect" has the following format:< br >
[domain name]:[regular expression]:[replacement expression]< / p >
< p > in which " [regular expression]" is as defined by java language, and cannot have " :" inside; if empty, it defaults to be same as " [domain name]" .< / p >
< h4 id = "ways-to-enable-redirection" > Ways to enable redirection:< / h4 >
< ul >
< li > < a href = "../urls/index.html" > Long the image button< / a > 。< / li >
< li > Long pressing the setting button, enable the option " url redirection" .< / li >
< li > Long pressing the setting button, enable the option " Resource redirection" .< / li >
< / ul >
< / div >
2023-03-05 03:12:05 +00:00
< p > Last Modified: 20 February 2023< br >
2023-03-05 03:14:49 +00:00
< span style = "color:red" > use relative path< / span > < / p >
2022-09-13 08:13:02 +00:00
< / body >
< / html >