Reputation: 33
We just received a code for a website. Nearly all of the links are broken because they didn't add .shtml as a file extension to any of the links.
Is this due to them simply forgetting or is there some configuration where we would basically tell the website to automatically detect ".shtml" pages?
Thanks!
Upvotes: 0
Views: 45
Reputation: 944196
There are numerous ways for a server to map a URL onto a file based on a word in the URL with the addition of an extension (either a hard coded one or one provided in a list).
The obvious ones that spring to mind for Apache HTTP (your milage will vary with your web server) are multiviews and mod_rewrite.
Upvotes: 0