Location - Match
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Here is one simple looking requirement :
I want to put max-age header of value X on my home page and a value of Y for rest of my website.
index.html is my default page but remember i cannot put
<LocationMatch "^/index.html">
Header set Cache-Control max-age=X
</LocationMatch>
As people will be hitting my website as : : http://www.abc.com and NOT http://www.abc.com/index.html
Please suggest.
Now while trying things i came across this :
<LocationMatch "^/[a-z]">
Header set Cache-Control max-age=7200
</LocationMatch>
Ideally it seems that above rule will "NOT" apply to "/" alone. But it does ;-) Now try this :
<LocationMatch "^/([a-h]|[j-z]">
Header set Cache-Control max-age=7200
</LocationMatch>
This one will "NOT" apply to "/" alone. So some how character "i" matches "/" ;-)
Thanks
Rajwinder Singh
[Index of Archives]
[Open SSH Users]
[Linux ACPI]
[Linux Kernel]
[Linux Laptop]
[Kernel Newbies]
[Security]
[Netfilter]
[Bugtraq]
[Squid]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Samba]
[Video 4 Linux]
[Device Mapper]