htaccess redirectMatch all files of a type except a certain one
Say I have a web folder with: /index.html /assets/css/styles.css /assets/images/logo.png /something.html /holdingpage.html /finale.html /folder/somefile.html /else.html /PDFs/something.pdf I want to put in place an htaccess RedirectMatch for this to "catch" all the files that are html files except the finale.html and redirect to there. What I have so far is: RedirectMatch 302 ".*/$" "/finale.html" Which correctly… Read More htaccess redirectMatch all files of a type except a certain one