Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


In this Discussion

New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

RewriteCond matching a virtual sub folder

nfnnfn Veteran

Hi

I have a .htacces file in the root folder.
I must match the root (/) or a virtual folder with two letters (/ab) to cache it for some seconds.

With this rule, I can match the root folder (/) but not the virtual folder.
Can anyone help me with this?

Thanks

<IfModule LiteSpeed>
    RewriteEngine On
    RewriteCond %{REQUEST_URI} ^(\/|\/[a-z]{2})$
    RewriteRule .* - [E=cache-control:max-age=120]
</IfModule>

Comments

  • nfnnfn Veteran

    Added this to the first .htaccess lines had worked"

Sign In or Register to comment.