tags:

views:

145

answers:

7

I know there are:

  • .aspx
  • .php
  • .html
  • .htm

This is the first time I'm seeing a website with .sd at the end. What exactly does that mean and is there a wiki that explains a bit more?

For example, this website: http://www.racingpost.com/horses2/results/home.sd

First time I'm seeing it and I'm just curious.

+4  A: 

Edited for the url you added: that specific one is most likely being used with the BlueDragon system, a family of runtime server-side products for the deployment of CFML pages, deployed in possibly a j2ee environment.

for instance you can google the site for references:

http://www.google.com/search?q=site%3Anewatlanta.com+%22sd

or see a servlet debug page:

http://74.125.93.132/search?q=cache:yg7UIh6nRdIJ:www.lucasoil.com/landing_pages/14,3.html/+%22index.sd%22+bluedragon&cd=2&hl=en&ct=clnk&gl=us&client=firefox-a

or you may be referring to the TLD (top-level domain name).

the TLD .sd belongs to country of Sudan which is managed by the Sudan Internet Society:

http://www.isoc.sd/sudanic.isoc.sd/

jspcal
+6  A: 

Because the choice of extension is practically meaningless on the web - the content-type header defines the actual format of the content - there are lots of exotic extensions around, mostly defined by the CMS or framework used. I'm pretty sure this is not an "own format" in the sense that "html", "aspx" and "php" differ from each other internally by containing raw HTML, PHP code, or ASP code, but just a "vanity extension" if you will.

Can you show us the web site in question? Maybe somebody can hazard a guess what CMS/platform it was built with.

Pekka
+4  A: 

.sd could be anything. According to Fileinfo.com it is the default extension for some type of audio file.

However, I could make a php page called index.sd and as long as I have my webserver configured in the correct way, it would serve it up as php. That goes for other things as well, .html, .py, .pl... etc, etc.

I would just need to add this to my configuration file for apache:

 AddType application/x-httpd-php .sd
sberry2A
A: 

According to fileinfo .sd is an audio file.

The Top Level Domain .sd denotes Sudan.

Other than that, you can come up with any extension you want (or even use an existing one) and point it to any handler you want, say, in your web server, or in your code. (In the .NET world, you can define your own MIME types through IIS, or setup Http Handlers in your web.config)

David Hedlund
I like that. Take something I presented originally (fileinfo reference) and put it in your response after the fact. Should I add the bit about it being a TLD for Sudan (which you took from jspcal's answer) ?
sberry2A
wtf? :D either that, or i was writing this at the same time as you were. fileinfo was the first hit for "sd file extension" on google actually; i'll admit to not knowing every extension by heart =)
David Hedlund
@David, sorry my mistake. Seen that a lot here lately. Should have looked at your extensive record helping before commenting.
sberry2A
no worries, but keep in mind that a lot of replies are written in the first few minutes of the question being posted. a lot of people might know the same right answer and not wait around to see if somebody else is already busy writing it. i'd like to think that that's not how it happens as often as you think it is.
David Hedlund
A: 

At a guess, it's probably one of the above - it's pretty trivial to get a webserver to arbitrarily treat a file as whatever you want irrespective of its extension.

middaparka
A: 

.sd is for SUDAN like .in for India .us for USA

giri
A: 

Good old "view source" shows that it is just HTML.

Tom Bascom
And if I had to guess I would guess that "sd" might stand for "Site Designer".
Tom Bascom