我的Joomla有两个问题!项目:
如果有人可以帮助我,我将非常高兴。预先致谢,并祝您愉快!
马格努斯
技术规格:
答案 0 :(得分:0)
好的,我自己找到了解决方案。我将代码发布在下面,因此,如果有人正在搜索类似的内容,他可以查看一下。
对于开始重定向:
<?php
$currentLink = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
if ($currentLink == "https://example.com") {
header("Location: https://example.com/cool-submenu");
}
if ($currentLink == "https://example.com/") {
header("Location: https://example.com/cool-submenu");
}
?>
对于语言重定向:
<?php
$url = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
$path = parse_url($url, PHP_URL_PATH);
$pathFragments = explode('/', $path);
$end = end($pathFragments);
if ($lang == "de") {
header("Location: https://example.com/de/{$end}");
}
?>
我希望这对有人需要的人有帮助。
马格努斯人的问候