I need to directly access and browse an particular file from application/views folder. For this I have gave the 755 permission of that file folder.
Permission details on folders and files are
application 755
views 755
XX 755
YY 755
ZZ.php 755
my htaccess code is follows as
# Mod Rewrite
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Even after this i am not able to access the required file and getting 403 error but after this i am seen the
error 403. Forbidden You don't have permission to access XXX.com/application/views/XX/YY/ZZ.php on this server.