Hi folks,
When I'm serving up many (huge) MP4 files via HTML5 , and want
heavy caching to keep traffic down, is the following suitable
public_html/.htaccess content?
=
ExpiresActive On
Header set Expires "Mon, 27 Mar 2038 13:33:37 GMT"
=
Thanks!
Best regards,
Norbert
-
Jim,
Using mod_alias or mod_rewrite with [R] is functionally equivalent, yes.
The former is simpler and easier to maintain, of course.
Note that you can use RedirectMatch if you need PCRE support and/or
captured expressions.
On 12/06/19 05:42 PM, Jim Weill wrote:
> So just to make sure I have th