Mobile app version of vmapp.org
Login or Join
Bryan171

: How to prevent JavaScript directory access with htaccess I have a website like http://example.com but the problem with it is that people are able to get access to my JavaScript by pointing a

@Bryan171

Posted in: #Apache #Htaccess

I have a website like example.com but the problem with it is that people are able to get access to my JavaScript by pointing a browser to example.com/js/.

I have little knowledge of using .htaccess files.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Bryan171

2 Comments

Sorted by latest first Latest Oldest Best

 

@Alves908

To prevent directory listings when a directory is requested (that doesn't contain a DirectoryIndex) you can add the following to your .htaccess file in the root of your site:

Options -Indexes


This will result in a 403 Forbidden being served for example.com/js/, rather than the server generating a directory listing.

As Jobin Jose suggests, you can add a (blank) index.html to these folders (the DirectoryIndex document). However, you will need to do this for every folder and this will serve a blank page (or whatever you decide to put in index.html), returning a successful HTTP status (200 - OK).

However, you can't reliably block users from viewing your JavaScript files that you are referencing in your client-side pages.

10% popularity Vote Up Vote Down


 

@Tiffany637

Simply add an index.html (with no content) in your js folder.

that will prevent listing of your js files in the browsers.

no need of htaccess usage here. This will prevent your js file listing only access with proper js file names.

Hope its helps..

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme