SubCog
7-7-06, 06:15 AM
so I've got a pointer domain, homebrewcomics.net, and I've installed joomla to it. The thing is, its not automatically going to the index.php the way it should. I can get to the site by typing in the filename, homebrewcomics.net/index.php , or I can get there, strangely enough by going to homebrewcomics.net/homebrewcomics , or I can even get there by going through my other site, tannerfamilytree.com/hombrewcomics .
If I put an index.html in the homebrewcomics folder, going to homebrewcomics.net will go straight to the index.html. It just won't go to the index.php. Anyone got any ideas?
oh, here's the content of my .htaccess, in case it makes a difference. RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} wujianli.net
RewriteCond %{REQUEST_URI} !WJL/
RewriteRule ^(.*)$ WJL/$1 [L]
RewriteCond %{HTTP_HOST} subcog.net
RewriteCond %{REQUEST_URI} !subcog/
RewriteRule ^(.*)$ subcog/$1 [L]
RewriteCond %{HTTP_HOST} fpsdialectics.net
RewriteCond %{REQUEST_URI} !fpsdialectics/
RewriteRule ^(.*)$ fpsdialectics/$1 [L]
RewriteCond %{HTTP_HOST} homebrewcomics.net
RewriteCond %{REQUEST_URI} !homebrewcomics/
RewriteRule ^(.*)$ homebrewcomics/$1 [L]
If I put an index.html in the homebrewcomics folder, going to homebrewcomics.net will go straight to the index.html. It just won't go to the index.php. Anyone got any ideas?
oh, here's the content of my .htaccess, in case it makes a difference. RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} wujianli.net
RewriteCond %{REQUEST_URI} !WJL/
RewriteRule ^(.*)$ WJL/$1 [L]
RewriteCond %{HTTP_HOST} subcog.net
RewriteCond %{REQUEST_URI} !subcog/
RewriteRule ^(.*)$ subcog/$1 [L]
RewriteCond %{HTTP_HOST} fpsdialectics.net
RewriteCond %{REQUEST_URI} !fpsdialectics/
RewriteRule ^(.*)$ fpsdialectics/$1 [L]
RewriteCond %{HTTP_HOST} homebrewcomics.net
RewriteCond %{REQUEST_URI} !homebrewcomics/
RewriteRule ^(.*)$ homebrewcomics/$1 [L]