Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does .action / .event at an end of a url mean?

Tags:

url

"https://www.evernote.com/Home.action"

Hi I was browsing Evernote and Mint.com and noticed that they both have .event / .action at the end of the url like above. What is the significance of it? How do you add something like that to an end of a url?

like image 426
Monstr92 Avatar asked Jan 05 '15 13:01

Monstr92


1 Answers

It means that the website is based on Struts2 framework by apache. Struts2 is a popular Java framework for creating Enterprise level java applications. All struts2 based sites have that ".action" ending URL.

This can be changed from the config file.

Source: http://struts.apache.org/docs/hello-world-using-struts-2.html

Changing configuration: http://www.tutorialspoint.com/struts_2/struts_configuration.htm

like image 119
abhishek_M Avatar answered Nov 08 '22 08:11

abhishek_M