I'm looking for a bit of code (jquery if possible) that will remove any file extensions from links. For example
directory/page.html to directory/page
directory2/page2.cfm to directory2/page2
Is this possible?
|
jQuery can only select the elements for you, but not process the strings. Simple string manipulation will do it:
Update: Regarding your comment, that's even simpler, just use
You could also restrict the set of links, by only selecting those that actually end with
|
|||||||||||
|
|
I'm not entirely sure whether this would work, but you could try using the .remove and set the element to file extension, Really not sure to be honest. There is also a simpler way of doing this without any jQuery however, what you could do is name all files index.extension and place them in according folders from the root, for example new.html would be renamed to index.html then placed in a directory named news, then when someone would type www.yourdomain.com/news/ it would directly open the necessary page, maybe a bit simpler than jQuery. |
|||
|
|
|||
|
|
.htaccessto rewrite the url. This is used by apache. Check this tool generateit.net/mod-rewrite – Sotiris Oct 21 '11 at 10:21