Reputation: 70
I have a website and it have many folders. In one folder named poster
and i want that if there is any HTML file which has css link like this /css/style.css
to /poster/css/style.css
. Is it possible to do this with .htaccess?
This folder should act like root for inside content.
Upvotes: 0
Views: 48
Reputation: 785491
You can use this rule as your first rule in site root .htaccess:
RedirectMatch 301 ^/(css/.+)$ /poster/$1
Upvotes: 1