Hi
When I get these requests:
http(s)://mydomain/path1/file1._20140101.css
http(s)://mydomain/path1/path2/file2-2.50._20140202.js
it should proxy to:
"http://backend/path1/file1.css"
"http://backend/path1/path2/file2-2.50.js"
I would like to remove this separator: ._[0-9]+ just before the file extension.
Something like this:
RewriteCond %{REQUEST_URI} \._[0-9]+\.(js|css)$
RewriteRule /(.*)\._([^.]*)$ /$1.$2 [P]