• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

at_domains_index.html

I

ilustrate

Guest
i found this file in my httpdocs directory of a domain i'm just starting to develop. Any idea how it got there? And what it actually does?


<html>
<head>
<title>Relocate</title>
<script language="javascript">
var url = window.location.href;
if (url.charAt(url.length - 1) != "/")
url = url + "/";
var s = url.indexOf("//") + 2;
var e = url.indexOf("@");
if (e > 0) {
var atpart = url.substring(s, e);
var newurl = url.substring(0, s) + url.substring(e + 1 , url.length);
window.location = newurl + "~" + atpart + "/";
} else {
window.location= "/index.html";
}
</script>
<meta http-equiv="refresh" content="4" url="/index.html">
</head>
<body>
<noscript>
Sorry, your browser does not support Java Script.
</noscript>
</body>
</html>
 
This is a normal file which Plesk puts into the httpdocs folder.
 
It's so you can add a subdomain, for example, cranky.domain.com to a domain in Plesk. Then you can access it via http://[email protected] in your browser.

It's a bit pointless if you ask me! :D
 
Back
Top