@@ 2764-2766 (lines=3) @@ | ||
2761 | ||
2762 | $url_path = $q;//LANG |
|
2763 | ||
2764 | if (substr($url_path, 0, $len_base_url) === $this->config['base_url']) { |
|
2765 | $url_path = substr($url_path, $len_base_url); |
|
2766 | } |
|
2767 | ||
2768 | $strictURL = $this->toAlias($this->makeUrl($this->documentIdentifier)); |
|
2769 | ||
@@ 2770-2772 (lines=3) @@ | ||
2767 | ||
2768 | $strictURL = $this->toAlias($this->makeUrl($this->documentIdentifier)); |
|
2769 | ||
2770 | if (substr($strictURL, 0, $len_base_url) === $this->config['base_url']) { |
|
2771 | $strictURL = substr($strictURL, $len_base_url); |
|
2772 | } |
|
2773 | $http_host = $_SERVER['HTTP_HOST']; |
|
2774 | $requestedURL = "{$scheme}://{$http_host}" . '/' . $q; //LANG |
|
2775 |