Well, matzahboy and VBart have already contributed nginx configuration excerpts that correctly show you how to rewrite the URL to a GET variable. But in order to USE this, you have to interpret the value provided in $_GET['q']. You haven't specified the rules you want to follow, so here's a suggestion.
To be tested in this order:
- Valid URL per RFC2396 using PHP's Validate Filter: test with cURL, respond TRUE for HTTP response codes < 400, FALSE for anything else.
- (host.)example.com/path (missing protocol): assume HTTP protocol, test per #1.
- host.example.com (hostname only): same as #2
- example.com (domain only): test as #2, then test as www.example.com.
- Anything else: fail.
If that makes sense to you, then the following index.php may get you started:
<?php
function http_response($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_NOBODY, TRUE); // remove body
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$head = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if (!$head) {
return FALSE;
}
if ($httpCode < 400) {
return $url;
} else {
return FALSE;
}
}
function test_string($q) {
if (filter_var($q, FILTER_VALIDATE_URL)) {
// Matches RFC2396, so let's generate a hit.
return http_response($q);
}
elseif (preg_match('/^([a-z0-9][a-z0-9-]+\.)+[a-z]{2,}(:[0-9]+)?\/.+$/', $q)) {
// Matches: (host.)example.com/path
return http_response("http://" . $q);
}
elseif (preg_match('/^([a-z0-9][a-z0-9-]+\.){2,}[a-z]{2,}$/', $q)) {
// Matches: host.example.com
return http_response("http://" . $q . "/");
}
elseif (preg_match('/^([a-z0-9][a-z0-9-]+\.)+[a-z]{2,}$/', $q)) {
// Matches: example.com
$ret=http_response("http://" . $q . "/");
if ($ret === FALSE) {
return http_response("http://www." . $q . "/");
} else {
return $ret;
}
}
else {
return FALSE;
}
}
$q = $_GET['q'];
//$q = $argv[1]; // for command-line testing
$url = test_string($q);
if ($url === FALSE) {
printf("<p>The URL <strong>%s</strong> is invalid.</p>\n", $q);
} else {
printf("<p>The URL is <strong>%s</strong>.</p>\n", $url);
}
I don't claim that this is the prettiest or most secure code, but at least it implements an analysis strategy for supplied URLs like:
http://example.com/https://www.example.net/foo/bar,
http://example.com/example.org/foo/bar or
http://example.com/example.org
Note that cURL's gopher support may be broken, and other protocols (which do not return HTTP response codes) are not supported by the code above. If you need to support protocols other than HTTP and HTTPS, please say so in your question and I'll adjust the PHP accordingly.
Specifically, if you want to be able to check http://example.com/ping://host.example.net it wouldn't be hard, but it would have to be coded separately from the bit handled by cURL.
http://example.com/foo/barwill be served by/index.php?q=foo/bar? – ghoti Jul 20 '12 at 1:21http://example.com/foo/baris that possible? – Radek Jul 20 '12 at 1:36http://example.com/https://www.example.net/and get an INSECURE connection to your server which will make a SECURE connection to example.net? If so, your question involves PHP programming, not just nginx configuration. – ghoti Jul 20 '12 at 1:53www.example.netcontains embedded images, do you want your index.php to translate those URLs as well, or just pass them through verbatim? Is this an attempt to hide your browser's IP, or something else? – ghoti Jul 20 '12 at 1:54http://www.isup.me/google.com– Radek Jul 20 '12 at 2:08