如何将原始基础 URL 替换为我的自定义 URL?
How can I replace original base URL to my custom URL?
当有人转到 mydomain.com 时,我只想重命名为 hellodomain.com base URL没有刷新。这意味着 mydomain 和 hellodomain 之间没有关系。所以无论你去哪里,你都会看到 hellodomain 而不是 mydoamin。
可以使用javascript吗?如果那我该怎么做?
javascript 级别不可能
我们可以使用 PHP 来解决这个问题。
$handle = curl_init();
$url = "https://example.com";
// Set the url
curl_setopt($handle, CURLOPT_URL, $url);
// Set the result output to be a string.
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($handle);
curl_close($handle);
print_r($output);
当有人转到 mydomain.com 时,我只想重命名为 hellodomain.com base URL没有刷新。这意味着 mydomain 和 hellodomain 之间没有关系。所以无论你去哪里,你都会看到 hellodomain 而不是 mydoamin。
可以使用javascript吗?如果那我该怎么做?
javascript 级别不可能
我们可以使用 PHP 来解决这个问题。
$handle = curl_init();
$url = "https://example.com";
// Set the url
curl_setopt($handle, CURLOPT_URL, $url);
// Set the result output to be a string.
curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($handle);
curl_close($handle);
print_r($output);