I want to prevent the viewing of a CSS file from the browser. Meaning that i want to hide the css from prying eyes. I used this for example:
<Files somefile.css">
Require valid-user
</Files>
But when i use this particular bit for example, the website breaks. Essentially what i want to do is to:
- prevent the viewing of a specific css file from the browser.
- whilst hiding this on the browser side, allow the website to function as normal.
Is this possible?
Thanks in advanced.