Hi I have been trying so hard to do the following on htaccess but it does not seem to work.
can someone out there help me?
AddType application/x-httpd-
One possibility is that you're not configured to allow the use of an .htaccess file.
You can check this in your httpd.conf.
You want to ensure that AllowOverride is set to All
eg
from
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Satisfy all
to
Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
Satisfy all