I cannot access my site without /index.php
My site: http://23.23.159.238/ brings up...
Not Found
The requested URL /joomla.xml/ was not found on this server.
However, http://23.23.159.238/index.php works fine. The rest of my site's directories load fine without the index.php.
In .htaccess I currently have...
RewriteBase /
1. I tried /joomla, but that didn't work and the rest of my pages didn't load either.
2. Commenting it out has the same effect as uncommented RewriteBase /, everything works, but the homepage without /index.php
In httpd.conf I have...
Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
In joomla.conf I have...
Options Indexes MultiViews
AllowOverride All
Order allow,deny
Allow from all
RewriteEngine On
RewriteRule ^/$ /joomla/ [PT]
I am totally lost. What can I do? Thank you.