Using: WinXP / Apache 1.3
When I access my site with nothing after the domain name, I automatically get the index.phtml in /htdocs as per my httpd.conf. However, no matter what I put after my domain (domain.com/reg, domain.com/reg/index.php), I still get the index.phtml that's in /htdocs, no matter if the file in the url exists or not.
In my httpd.conf:
<IfModule mod_dir.c>
DirectoryIndex index.phtml index.php
</IfModule>
Say I have the file index.php in my /htdocs/reg, I should be able to access this by typing in domain.com/reg/index.php, right? It still sends me to index.phtml in /htdocs. Also, if I delete the index.phtml, it gives me a directory, and if I click on the /reg folder, it will display the index.php file, no problem, but the url isn't displayed in the address bar, just my domain name (http://www.domain.com/ instead of http://www.domain.com/reg/index.php). I've also tried lots of things with .htaccess files, all to no avail.
Is this a problem with Apache, my httpd.conf or .htaccess files, or some seperate issue altogether, and how do I fix it?