I've got a set of webpages-A at www.example.com and I want to setup a set of scripts-B at the location: www.example.com/abc/
I've got an existing .htaccess which is "configured" to be located at an address like www.example.com/ (not within the subfolder)
Where should the .htaccess be located? At www.example.com/ or at www.example.com/abc/
Its currently at the latter, but its not redirecting properly.
How do I check if the url rewriting module is installed properly?
Edit 1: Solution
In /etc/httpd/conf/httpd.conf, changed:
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
To
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All