mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
113 lines
5 KiB
HTML
113 lines
5 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="../style.css" type="text/css" />
|
|
<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>⚠️<span style="color:red">Redirection forwards cookies</span> with the setting option "Redirect cookies" enabled, so use the options with care.</p>
|
|
<h4 id="setting-options-url-redirection-vs-resource-redirection">Setting options: "Url redirection" vs. "Resource redirection"</h4>
|
|
<p>"Url redirection" redirects the main/page url only while "Resource redirection" is for all urls in the page.</p>
|
|
<h4 id="global-redirection">Global redirection</h4>
|
|
<p><a href="i:60/data/data/info.torapp.uweb/files/config.html:https://jamesfengcao.codeberg.page/en/searchurl/config.html">Global redirection</a> is enabled with the setting option "Resource redirection" or both "Url redirection" and "Redirect cookies".</p>
|
|
<p>When a valid global redirection url is set, the "default.redirect" has no effect, and any url resource is fetched with the new url by appending the original url to the global redirection url.</p>
|
|
<ul>
|
|
<li>
|
|
<p>If the global redirection url ends with '/', then the resource is fetched with by the url "[global redirection url] + [url]". For example, "https://domain.com/pathXXX/https://cnn.com".</p>
|
|
</li>
|
|
<li>
|
|
<p>(to provide more options to users) If the global redirection url does not end with '/', it means the global redirection url is naked. then the resource is fetched with by the url "[global redirection url] + '/'+ [url without scheme]". For example, when the global redirection url is "https://domain.com/pathXXX", the real url to visit "https://cnn.com" is "https://domain.com/pathXXX/cnn.com".</p>
|
|
</li>
|
|
</ul>
|
|
<h4 id="defaultredirect-valid-only-without-global-redirection-url">"default.redirect" (valid only without global redirection url)</h4>
|
|
<p>Click the following links to append mirrors to the file "default.redirect":<br>
|
|
<a target="_self" href="i:0gdefault.redirect:../../zh/searchurl/txt/redirect.cfg">google recaptcha mirror</a></p>
|
|
<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>
|
|
<h5 id="ways-to-enable-domain-redirection">Ways to enable domain redirection:</h5>
|
|
<ul>
|
|
<li><a href="../urls/index.html">Long pressing 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>
|
|
<p>Last Modified: 17 June 2023<br>
|
|
add latest.html<br>
|
|
<pre></pre>
|
|
</p>
|
|
<script>
|
|
if(location.href.indexOf("/zh/")>0){
|
|
var script = document.createElement("script");
|
|
script.type = "text/javascript";
|
|
script.src = "../../js/gissues.js";
|
|
script.setAttribute("repo","jamesfengcao/uweb");
|
|
script.setAttribute("issue-term","title");
|
|
script.setAttribute("theme","github-light");
|
|
script.async = true;
|
|
document.body.appendChild(script);
|
|
}
|
|
</script>
|
|
<script id='jsgiscus'
|
|
src='https://giscus.app/client.js'
|
|
data-repo="torappinfo/uweb"
|
|
data-repo-id="MDEwOlJlcG9zaXRvcnkzMDIyMDU3MjE="
|
|
data-category="Announcements"
|
|
data-category-id="DIC_kwDOEgNLGc4CQjsh"
|
|
data-mapping="title"
|
|
data-strict="0"
|
|
data-reactions-enabled="1"
|
|
data-emit-metadata="0"
|
|
data-input-position="top"
|
|
data-theme="light"
|
|
data-lang="en"
|
|
data-loading="lazy"
|
|
crossorigin="anonymous" async>
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|