sitemesh / sitemesh3

SiteMesh 3: Official repository
https://sitemesh.github.io/sitemesh-website/
Apache License 2.0
480 stars 168 forks source link

Url case sensitive #109

Closed fantasylion closed 1 year ago

fantasylion commented 7 years ago
 <decorator name="home-page" page="layout/home_main.jsp">
        <pattern>/register.htm</pattern>
 </decorator>

It doesn't work if I request /REGISTER.HTM . What do I need to do to make it work? Some one can tell me?please

aadrian commented 7 years ago

It doesn't work if I request /REGISTER.HTM

Why should it? URLs are case sensitive https://www.w3.org/TR/WD-html40-970708/htmlweb.html

What do I need to do to make it work?

Request /register.htm and rename the files accordingly, since filenames on Unix platforms are also case sensitive, so two files: register.htm and REGISTER.HTM can exist both in the same directory.

fantasylion commented 7 years ago

Yeah! You are right. Is so embarrassed, my boss want me to do this.

codeconsole commented 1 year ago

Works as intended.