Hi there,
I have a site and when I type in the browser " it works file, but if I type " it doesn't get to the site,
Does anyone know if we can set this in Apache somewhere? or is this done with our DNS service?
Any input will be great help!
my apache's config for the site is something like the following now:
I have a site and when I type in the browser " it works file, but if I type " it doesn't get to the site,
Does anyone know if we can set this in Apache somewhere? or is this done with our DNS service?
Any input will be great help!
my apache's config for the site is something like the following now:
Code:
<VirtualHost 216.187.84.13:80>
ServerName [URL unfurl="true"]www.domain.com[/URL]
ServerAdmin webmaster@domain.com
DocumentRoot /var/[URL unfurl="true"]www/www.domain.com/htdocs/[/URL]
DirectoryIndex index.php
CustomLog /var/[URL unfurl="true"]www/www.domain.com/logs/access_log[/URL] combined
ErrorLog /var/[URL unfurl="true"]www/www.domain.com/logs/error_log[/URL]
ScriptAlias /cgi-bin/ /var/[URL unfurl="true"]www/www.domain.com/cgi-bin/[/URL]
Redirect /members [URL unfurl="true"]http://www.domain2.com[/URL]
ErrorDocument 403 /join.php
ErrorDocument 404 /join.php
<Directory /var/[URL unfurl="true"]www/www.domain.com/htdocs/mgp>[/URL]
Options Indexes
</Directory>
<Directory /usr/share/phpmyadmin>
AuthName "PHPMYAdmin Protected Area"
AuthType Basic
AuthUserFile /usr/share/phpmyadmin/.htpasswd
<Limit GET POST>
require valid-user
</Limit>
</Directory>
<Directory /var/[URL unfurl="true"]www/www.domain.com/htdocs/admin>[/URL]
AuthName "Domain Site Administration Area"
AuthType Basic
AuthUserFile /var/[URL unfurl="true"]www/www.domain.com/htdocs/admin/.htpasswd[/URL]
<Limit GET POST>
require valid-user
</Limit>
</Directory>
</VirtualHost>