Jump to content

When I Visit My Url I Get A Directory Of Files?


unemployment

Recommended Posts

D'oh! You're right, Jessica. I didn't even look at what the domain was. :stoopid:

 

So, before I go off for a (apparently, much needed) break. Could it be that the OP has two different configurations for the domains, one which uses "index.php" as a DirectoryIndex, and the other not? In any case, I'd set up a forwarding from http://domain.com to http://www.domain.com

I guess the question is does OP see his site properly at the www url, or what? Because that's the impression I got, which would indicate he does have an index.php and php is working.

 

Hey guys, the domain is actually http://trekeffect.com which shows the directory structure. The thing is... my personal site, http://jasonbiondo.com has no issues. I checked the virtual hosts and both of them have the same contents. What am I missing?

Ok for real, you have to focus on one question or another. Is it two separate domains, or is it a question about adding the 'www' subdomain?

 

The question is... going to http://trekeffect.com shows a server list but going to http://www.trekeffect.com shows the website, why?

 

My virtual host file:

 

<VirtualHost *:80>

DocumentRoot /var/www/trekeffect.com/trekeffect.com

ServerName www.trekeffect.com

ServerAlias trekeffect.com

 

<Directory />

Options FollowSymLinks

AllowOverride None

</Directory>

<Directory /var/www/>

Options Indexes FollowSymLinks MultiViews

AllowOverride ALL

Order allow,deny

allow from all

</Directory>

</VirtualHost>

The apache man page shows the variables reversed:

<VirtualHost *:80>
  ServerName www.domain.tld
  ServerAlias domain.tld *.domain.tld
  DocumentRoot /www/domain
</VirtualHost>

 

That really shouldn't matter. I don't have this problem with pitchbig.com

 

virtual host:

 

<VirtualHost *:80>

DocumentRoot /var/www/pitchbig.com/pitchbig.com

ServerName www.pitchbig.com

ServerAlias pitchbig.com

 

<Directory />

Options FollowSymLinks

AllowOverride None

</Directory>

<Directory /var/www/>

Options Indexes FollowSymLinks MultiViews

AllowOverride ALL

Order allow,deny

allow from all

</Directory>

</VirtualHost>

  • 3 weeks later...

<VirtualHost *:80>
ServerAdmin [email protected]

DocumentRoot /var/www/trekeffect.com/trekeffect.com
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/trekeffect.com/trekeffect.com>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>

ErrorDocument 403 /errors/403.html
ErrorDocument 404 /errors/404.html
ErrorDocument 500 /errors/500.html

ServerName trekeffect.com
ServerAlias *.trekeffect.com

RewriteEngine on
RewriteCond %{HTTP_HOST} !^(www).* [NC]
RewriteCond %{HTTP_HOST} ^([^\.]+)\.([^\.]+)\.com
RewriteCond /var/www/%2/%2/%1 -d
RewriteRule ^(.*) /%1/$1 [L]
</VirtualHost>

 

Try this one on for size.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.