Ora provo via php a piazzare qualcosa in testa allo script e vediamo se si riesce...
-
Ho messo questo e sembra andare tutto bene:
Codice PHP:
// Start Num Server
#$ni = htmlspecialchars($_GET["nick"]);
$ni = preg_replace('/[^a-z0-9]/i', '', $_GET["nick"]);
// Redirect to darkwolf if no nick is inserted :P
if (empty($ni)) {
header('Location: http://www.darkwolf.it/avs/darkwolf');
}
// Remove Query From URI :)
if (strpos($_SERVER["REQUEST_URI"], "nick=")) {
header("Location: http://www.darkwolf.it/avs/$ni");
}
---
Codice:
# Rewrite AlterVista Server Number
RewriteRule ^avs/?$ ./avs.php [L]
RewriteRule ^avs/(.+)$ ./avs.php?nick=$1 [L]
---
Lo script l'ho messo nella root così ho fixato anche il form :P
Codice HTML:
<form method="get" action="/avs.php">
<input value="(il nickname inserito)" type="text" name="nick" id="name" />
<input type="submit" value="> Numero Server <" id="submit" />
</form>
Grazie per il supporto