vote up 3 vote down star
3

What file extensions are used most commonly by different languages? Please don't put source file names (like .java) but rather extensions that would be present in a URL for rendered pages.

Here is my (alphabetized) list so far

  • ASP Classic
    • asp
  • ASP.NET
    • aspx
    • axd
    • asx
    • asmx
    • ashx
  • CSS
    • css
  • Coldfusion
    • cfm
  • Erlang
    • yaws
  • HTML
    • html
    • htm
    • xhtml
  • Java
    • jsp
    • jspx
    • wss
    • do
    • action
  • JavaScript
    • js
  • Perl
    • pl
  • PHP
    • php
    • php4
    • php3
    • phtml
  • Python
    • py
  • Ruby
    • rb
    • rhtml
  • XML
    • xml
    • rss

Any more? I'll keep updating this based on comments. Largest correct additions (or deletions) is the accepted answer.

Aside: This is for comparing language use online: http://blog.paulisageek.com/2009/10/file-extensions-on-internet.html

flag
1  
shouldn't this be in community-wiki ? – Xinus Oct 23 at 16:23
sure, how does that work? Check the box? – Paul Tarjan Oct 23 at 16:24
Yep. Just check it. – Jergason Oct 23 at 16:25
What about asa and asax? Not typically extensions that the user will see. – mgroves Oct 23 at 18:34
1  
Your survey would appear to be highly flawed, purely because [as you have yourself accepted], there are many, many, many web sites which use a URI structure that doesn't expose a file extension, and because the file extension can't be relied upon to be true. – Rob Oct 23 at 22:50
show 2 more comments

13 Answers

vote up 0 vote down check

Add there:

  • ASP.NET
    • .axd
    • .asx
    • .asmx
    • .ashx
    • .aspx
link|flag
Is ASP.NET == ASP? – Paul Tarjan Oct 23 at 16:32
2  
No - completely different apart from the branding. – Lucas Jones Oct 23 at 16:57
ok, added. thanks. – Paul Tarjan Oct 23 at 17:05
vote up 7 vote down

Keep in mind that good URL design will completely hide any underlying file types.

link|flag
Yup, this is why it is only approximate. A lot of people still don't do that. – Paul Tarjan Oct 23 at 16:31
now a days there are no extensions for increasing readability of the URL, check stackoverflow URL – Xinus Oct 23 at 16:58
correct. which is why i'm doing this study now before it is too late :) – Paul Tarjan Oct 23 at 17:06
vote up 0 vote down

.yaws (Erlang Yaws Web Server)

link|flag
Added, but not much on the net google.com/search?q=ext%3Ayaws – Paul Tarjan Oct 23 at 16:28
vote up 0 vote down

.js, .html, .htm, .xhtml probably deserve a nod.

link|flag
Good call. Added – Paul Tarjan Oct 23 at 16:27
vote up 0 vote down

.aspx .asp .css

link|flag
Added asp and css. – Paul Tarjan Oct 23 at 16:29
vote up 0 vote down

AOLServer using Tcl - .adp

link|flag
now you're pulling my leg. there are 0 of those online google.com/search?q=ext%3A.adp – Paul Tarjan Oct 23 at 16:32
AOLServer developers are, apparently, better at mapping clean URLs to the underlying pages I guess. – RHSeeger Oct 23 at 20:24
vote up 0 vote down

REBOL tends to use .r

But .cgi is also used by some for REBOL CGI scripts.

link|flag
most of the .r don't look like rebol to me. google.com/search?q=ext%3Ar . Do they look right to you? – Paul Tarjan Oct 23 at 16:48
I think those are just coincedences with people ending usernames with '.r'. – Lucas Jones Oct 23 at 16:59
even on the pages way down, they still look like garbage. sorry. – Paul Tarjan Oct 23 at 17:04
Not all [b].r[/]b is [b]REBOL[/b]. But much [b]REBOL CGI[/]b is [b].r[/b]. – Sunanda Oct 24 at 5:31
vote up 0 vote down

ASP.NET needs a couple more, but I'm not sure this is exhaustive:

  • aspx
  • ascx
  • asmx (web services)
link|flag
added ascx. does the set look comprehensive now? – Paul Tarjan Oct 23 at 17:06
@Paul, that is much better. – John Fisher Oct 23 at 17:14
However you won't see the .ascx in a URL. – erikkallen Oct 23 at 20:21
vote up 0 vote down

Here's a few of the commonly-used (but rarely enforced) extensions for some CSS dialects:

link|flag
interesting, I've never heard of them. They look more like source files than extensions of actual pages on the next. Am it correct? – Paul Tarjan Oct 23 at 19:58
@Paul Tarjan: Yes, that's what they are, but so are py and rb, so that's what I figured you were looking for. – Steve Losh Oct 24 at 22:44
vote up 0 vote down

.action -- struts2

.do -- struts1

.xml -- XML

.rss -- RSS feeds

.atom -- Atom feeds(RSS)

(no extension) -- used now a days to increase readability of the URL, check stackoverflow URL

link|flag
What language is struts? is it a framework for java? – Paul Tarjan Oct 23 at 16:30
yep.................... – Xinus Oct 23 at 16:32
added. thanks.. – Paul Tarjan Oct 23 at 16:35
vote up 0 vote down

Ruby also tended to use .rhtml in the past.

Stellent uses the .hcsp extension for its page templates.

I believe Django uses .dtl.

link|flag
I've never heard of anyone using .dtl for Django templates. The overwhelmingly common standard seems to be using the extension of whatever kind of file the template will be rendered to. If it's producing a css file, it's mytemplate.css, if it's making an html file then mytemplate.html, etc. – Steve Losh Oct 24 at 22:46
vote up 0 vote down

Going old school: .cgi

Typically written in C or Perl

link|flag
heh, but what language? perl? – Paul Tarjan Oct 23 at 19:50
vote up 0 vote down

Ruby on Rails also uses the following internally for templates (files that are mostly HTML or JavaScript). So they're not really public facing, and are transparent to the end user/robot.

  • .html.erb
  • .erb
  • .rjs

Used to be that most CGI scripts were written in Perl.

link|flag
I'm tentative about adding CGI to perl. I'll do more research. But I added those for ruby. – Paul Tarjan Oct 23 at 16:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.