If default index page is not created the apache server by default shows Directory Listing to avoid this create an empty file named as index.html or index.php or add following code in your .htaccess.
Code:
--------------------------------------------------
IndexIgnore * # > for avoiding listing of all files
IndexIgnore *.gif *.jpg # > for avoiding listing of only particular type of file.
Options Indexes # > Deny directory listing completely. [Only site name appear]
--------------------------------------------------
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment