I would like to know what does .do
webpages stand for ( as .php
stands for PHP pages with PHP Scripting) and what is the scripting language behind it.
标签:
file-extension
相关问题
- Opening a file in my application from File Explore
- How do you change the filename extension stored in
- get extension of uploaded file in cake php
- How do I remove the '.php' extension from
- Apache: How to rewrite URL with no file extension
相关文章
- Which MIME type is correct for the .exe file?
- SaveFileDialog AddExtension doesn't work as ex
- For a .Net project, what file extensions should I
- How do you change the extension that .Net pages wi
- Does FileInfo.Extension return the last *.* patter
- How to search for files on phone sdcard or else wh
- best way to remove file extension [duplicate]
- Does PHP have a function that returns the correct
.do is the commonly used convention to denote a Struts action. Like .jsf for JSF . But there is no compulsion that all struts action should map to .do extenstion. It can be configured in web.xml to .anything. Also a simple servlet can also be mapped to a .do extension. So nothing can be derived by just looking at the URL.
http://www.fileinfo.com/extension/do
According to WikiPedia,
.do
is:However, you can't really say anything about the technology behind based solely on the "extension", i.e., the server can be configured to use
.do
for PHP files etc. This can be done in order to secure backwards compatibility or whatever.While
.do
seems to be a Struts convention, it is used in Spring and Spring MVC as well. This SO thread talks a little bit about that, also noting that whereever Servlets are used, '.do' files can be used: Why do Java webapps use .do extension? Where did it come from?