I am trying to set a header based on the URI of a particular page.
I access a page using chrome. Inspect element and see that my URI header is giving the value /bst/index.html Now in my Apache config , I want to set a Header to Yes if my %{REQUEST_URI} is equal to /bst/index.html This is what I am doing :
RewriteCond %{REQUEST_URI} ^\/bst\/index\.html [NC]
Header set X-Akamai Yes
The above config is not working and is setting X-Akami for all the pages I am visiting on the web page.
Any idea why ?