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