You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by "Wang, Mary Y" <ma...@boeing.com> on 2010/04/09 18:34:48 UTC

[users@httpd] The requested URL ....was not found on this server - Scratch my head

Hi,

I'm in the process of upgrading to httpd 2.0.46.  I'm getting this error when it goes to this URL https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/ .  The page showed as "The requested URL /projects/ms-tools-charts/ was not found on this server."   The ssl_error_log showed "File does not exist:                     /usr/brass/www/projects/ms-tools-charts/, "

I read several blogs and postings, and many people suggested using the RewriteEngine directive.  I've never used the rewriteengine directive in the previous apache configuration (it worked before).

In the httpd.conf file
I have defined the following:

ServerName devbrass2.ana.bna.boeing.com:443

DocumentRoot "/usr/brass/www"

# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/usr/brass/www">
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

I'm running on Redhat.

Any ideas on how I can fix this problem?

Thanks in advance.

Mary






---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


RE: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Posted by "Wang, Mary Y" <ma...@boeing.com>.
Thanks Eric!!! Yuppie!!! It is working now.  I added AcceptInfo On in httpd.conf (I didn't have to do this in the old version of apache). It saved hours of reading the Apache documentation and googling...

Thanks again.

Mary



-----Original Message-----
From: Eric Covener [mailto:covener@gmail.com] 
Sent: Saturday, April 10, 2010 10:49 AM
To: users@httpd.apache.org
Subject: Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

On Sat, Apr 10, 2010 at 1:31 PM, Wang, Mary Y <ma...@boeing.com> wrote:
> Thanks for the reply.
> There is a filename called projects (this is a php script file) under 
> "/usr/brass/www/", and the projects php script file would parse the 
> incoming URL (in the example below, it would extract 'ms-tools-charts' 
> and query the database for ms-tool-charts to display the content for the page.
>
> Any ideas?
>

AcceptPathInfo?


--
Eric Covener
covener@gmail.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Posted by Eric Covener <co...@gmail.com>.
On Sat, Apr 10, 2010 at 1:31 PM, Wang, Mary Y <ma...@boeing.com> wrote:
> Thanks for the reply.
> There is a filename called projects (this is a php script file) under
> "/usr/brass/www/", and the projects php script file would parse the incoming
> URL (in the example below, it would extract 'ms-tools-charts' and query the
> database for ms-tool-charts to display the content for the page.
>
> Any ideas?
>

AcceptPathInfo?


-- 
Eric Covener
covener@gmail.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


RE: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Posted by "Wang, Mary Y" <ma...@boeing.com>.
Thanks for the reply.
There is a filename called projects (this is a php script file) under "/usr/brass/www/", and the projects php script file would parse the incoming URL (in the example below, it would extract 'ms-tools-charts' and query the database for ms-tool-charts to display the content for the page.

Any ideas?

Thanks in advance.
Mary



________________________________
From: alin vasile [mailto:alinachegalati@yahoo.com]
Sent: Friday, April 09, 2010 10:47 PM
To: users@httpd.apache.org
Subject: Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

The directory "/usr/brass/www/projects/ms-tools-charts/" exists on your server?

What should be the index page there?

________________________________
From: "Wang, Mary Y" <ma...@boeing.com>
To: "users@httpd.apache.org" <us...@httpd.apache.org>
Sent: Fri, April 9, 2010 9:43:47 PM
Subject: RE: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Hmmm.  Actually the http://devbrass2.ana.bna.boeing.com/ is a variable.  Any thing after .com could be anything based on the frontend php code.  I could have hundreds of /projects/xxx.  It seems like it's not following the link...

I'm also concerned that I don't understand the newer httpd.conf configuration features...

Mary


-----Original Message-----
From: Libo Song [mailto:lsong@google.com<ma...@google.com>]
Sent: Friday, April 09, 2010 10:43 AM
To: users@httpd.apache.org<ma...@httpd.apache.org>
Subject: Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

You are using this URL:
https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/

Your httpd.conf setting has this
ServerName devbrass2.ana.bna.boeing.com:443

so, how about try this URL
http://devbrass2.ana.bna.boeing.com:443/projects/ms-tools-charts/

On Fri, Apr 9, 2010 at 1:34 PM, Wang, Mary Y <ma...@boeing.com>> wrote:
> Thank for your response.  I don't understand what you were saying.
> Can you point out where the possible problem was in the my httpd.conf file?  Or give me an example.
>
> Mary
>
>
> -----Original Message-----
> From: Libo Song [mailto:lsong@google.com<ma...@google.com>]
> Sent: Friday, April 09, 2010 10:27 AM
> To: users@httpd.apache.org<ma...@httpd.apache.org>
> Subject: Re: [users@httpd] The requested URL ....was not found on this
> server - Scratch my head
>
> One quick point, you have port in your ServerName, but your request does not. Is that a typo?
>
>
> On Fri, Apr 9, 2010 at 12:34 PM, Wang, Mary Y <ma...@boeing.com>> wrote:
>> Hi,
>>
>> I'm in the process of upgrading to httpd 2.0.46.  I'm getting this error when it goes to this URL https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/ .  The page showed as "The requested URL /projects/ms-tools-charts/ was not found on this server."   The ssl_error_log showed "File does not exist:                     /usr/brass/www/projects/ms-tools-charts/, "
>>
>> I read several blogs and postings, and many people suggested using the RewriteEngine directive.  I've never used the rewriteengine directive in the previous apache configuration (it worked before).
>>
>> In the httpd.conf file
>> I have defined the following:
>>
>> ServerName devbrass2.ana.bna.boeing.com:443
>>
>> DocumentRoot "/usr/brass/www"
>>
>> # This should be changed to whatever you set DocumentRoot to.
>> #
>> <Directory "/usr/brass/www">
>>    Options Indexes FollowSymLinks
>>    AllowOverride All
>>    Order allow,deny
>>    Allow from all
>> </Directory>
>>
>> I'm running on Redhat.
>>
>> Any ideas on how I can fix this problem?
>>
>> Thanks in advance.
>>
>> Mary
>>
>>
>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> The official User-To-User support forum of the Apache HTTP Server Project.
>> See <URL:http://httpd.apache.org/userslist.html> for more info.
>> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
>>   "   from the digest: users-digest-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
>> For additional commands, e-mail: users-help@httpd.apache.org<ma...@httpd.apache.org>
>>
>>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
> For additional commands, e-mail: users-help@httpd.apache.org<ma...@httpd.apache.org>
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
> For additional commands, e-mail: users-help@httpd.apache.org<ma...@httpd.apache.org>
>
>

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
  "  from the digest: users-digest-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
For additional commands, e-mail: users-help@httpd.apache.org<ma...@httpd.apache.org>


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
  "  from the digest: users-digest-unsubscribe@httpd.apache.org<ma...@httpd.apache.org>
For additional commands, e-mail: users-help@httpd.apache.org<ma...@httpd.apache.org>



Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Posted by alin vasile <al...@yahoo.com>.
The directory "/usr/brass/www/projects/ms-tools-charts/" exists on your server?

What should be the index page there?




________________________________
From: "Wang, Mary Y" <ma...@boeing.com>
To: "users@httpd.apache.org" <us...@httpd.apache.org>
Sent: Fri, April 9, 2010 9:43:47 PM
Subject: RE: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Hmmm.  Actually the http://devbrass2.ana.bna.boeing.com/ is a variable.  Any thing after .com could be anything based on the frontend php code.  I could have hundreds of /projects/xxx.  It seems like it's not following the link...

I'm also concerned that I don't understand the newer httpd.conf configuration features...

Mary


-----Original Message-----
From: Libo Song [mailto:lsong@google.com] 
Sent: Friday, April 09, 2010 10:43 AM
To: users@httpd.apache.org
Subject: Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

You are using this URL:
https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/

Your httpd.conf setting has this
ServerName devbrass2.ana.bna.boeing.com:443

so, how about try this URL
http://devbrass2.ana.bna.boeing.com:443/projects/ms-tools-charts/

On Fri, Apr 9, 2010 at 1:34 PM, Wang, Mary Y <ma...@boeing.com> wrote:
> Thank for your response.  I don't understand what you were saying.
> Can you point out where the possible problem was in the my httpd.conf file?  Or give me an example.
>
> Mary
>
>
> -----Original Message-----
> From: Libo Song [mailto:lsong@google.com]
> Sent: Friday, April 09, 2010 10:27 AM
> To: users@httpd.apache.org
> Subject: Re: [users@httpd] The requested URL ....was not found on this 
> server - Scratch my head
>
> One quick point, you have port in your ServerName, but your request does not. Is that a typo?
>
>
> On Fri, Apr 9, 2010 at 12:34 PM, Wang, Mary Y <ma...@boeing.com> wrote:
>> Hi,
>>
>> I'm in the process of upgrading to httpd 2.0.46.  I'm getting this error when it goes to this URL https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/ .  The page showed as "The requested URL /projects/ms-tools-charts/ was not found on this server."   The ssl_error_log showed "File does not exist:                     /usr/brass/www/projects/ms-tools-charts/, "
>>
>> I read several blogs and postings, and many people suggested using the RewriteEngine directive.  I've never used the rewriteengine directive in the previous apache configuration (it worked before).
>>
>> In the httpd.conf file
>> I have defined the following:
>>
>> ServerName devbrass2.ana.bna.boeing.com:443
>>
>> DocumentRoot "/usr/brass/www"
>>
>> # This should be changed to whatever you set DocumentRoot to.
>> #
>> <Directory "/usr/brass/www">
>>    Options Indexes FollowSymLinks
>>    AllowOverride All
>>    Order allow,deny
>>    Allow from all
>> </Directory>
>>
>> I'm running on Redhat.
>>
>> Any ideas on how I can fix this problem?
>>
>> Thanks in advance.
>>
>> Mary
>>
>>
>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> The official User-To-User support forum of the Apache HTTP Server Project.
>> See <URL:http://httpd.apache.org/userslist.html> for more info.
>> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
>> For additional commands, e-mail: users-help@httpd.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
  "  from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
  "  from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


      

RE: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Posted by "Wang, Mary Y" <ma...@boeing.com>.
Hmmm.  Actually the http://devbrass2.ana.bna.boeing.com/ is a variable.  Any thing after .com could be anything based on the frontend php code.  I could have hundreds of /projects/xxx.  It seems like it's not following the link...

I'm also concerned that I don't understand the newer httpd.conf configuration features...

Mary


-----Original Message-----
From: Libo Song [mailto:lsong@google.com] 
Sent: Friday, April 09, 2010 10:43 AM
To: users@httpd.apache.org
Subject: Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

You are using this URL:
https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/

Your httpd.conf setting has this
ServerName devbrass2.ana.bna.boeing.com:443

so, how about try this URL
http://devbrass2.ana.bna.boeing.com:443/projects/ms-tools-charts/

On Fri, Apr 9, 2010 at 1:34 PM, Wang, Mary Y <ma...@boeing.com> wrote:
> Thank for your response.  I don't understand what you were saying.
> Can you point out where the possible problem was in the my httpd.conf file?  Or give me an example.
>
> Mary
>
>
> -----Original Message-----
> From: Libo Song [mailto:lsong@google.com]
> Sent: Friday, April 09, 2010 10:27 AM
> To: users@httpd.apache.org
> Subject: Re: [users@httpd] The requested URL ....was not found on this 
> server - Scratch my head
>
> One quick point, you have port in your ServerName, but your request does not. Is that a typo?
>
>
> On Fri, Apr 9, 2010 at 12:34 PM, Wang, Mary Y <ma...@boeing.com> wrote:
>> Hi,
>>
>> I'm in the process of upgrading to httpd 2.0.46.  I'm getting this error when it goes to this URL https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/ .  The page showed as "The requested URL /projects/ms-tools-charts/ was not found on this server."   The ssl_error_log showed "File does not exist:                     /usr/brass/www/projects/ms-tools-charts/, "
>>
>> I read several blogs and postings, and many people suggested using the RewriteEngine directive.  I've never used the rewriteengine directive in the previous apache configuration (it worked before).
>>
>> In the httpd.conf file
>> I have defined the following:
>>
>> ServerName devbrass2.ana.bna.boeing.com:443
>>
>> DocumentRoot "/usr/brass/www"
>>
>> # This should be changed to whatever you set DocumentRoot to.
>> #
>> <Directory "/usr/brass/www">
>>    Options Indexes FollowSymLinks
>>    AllowOverride All
>>    Order allow,deny
>>    Allow from all
>> </Directory>
>>
>> I'm running on Redhat.
>>
>> Any ideas on how I can fix this problem?
>>
>> Thanks in advance.
>>
>> Mary
>>
>>
>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> The official User-To-User support forum of the Apache HTTP Server Project.
>> See <URL:http://httpd.apache.org/userslist.html> for more info.
>> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
>> For additional commands, e-mail: users-help@httpd.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Posted by Libo Song <ls...@google.com>.
You are using this URL:
https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/

Your httpd.conf setting has this
ServerName devbrass2.ana.bna.boeing.com:443

so, how about try this URL
http://devbrass2.ana.bna.boeing.com:443/projects/ms-tools-charts/

On Fri, Apr 9, 2010 at 1:34 PM, Wang, Mary Y <ma...@boeing.com> wrote:
> Thank for your response.  I don't understand what you were saying.
> Can you point out where the possible problem was in the my httpd.conf file?  Or give me an example.
>
> Mary
>
>
> -----Original Message-----
> From: Libo Song [mailto:lsong@google.com]
> Sent: Friday, April 09, 2010 10:27 AM
> To: users@httpd.apache.org
> Subject: Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head
>
> One quick point, you have port in your ServerName, but your request does not. Is that a typo?
>
>
> On Fri, Apr 9, 2010 at 12:34 PM, Wang, Mary Y <ma...@boeing.com> wrote:
>> Hi,
>>
>> I'm in the process of upgrading to httpd 2.0.46.  I'm getting this error when it goes to this URL https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/ .  The page showed as "The requested URL /projects/ms-tools-charts/ was not found on this server."   The ssl_error_log showed "File does not exist:                     /usr/brass/www/projects/ms-tools-charts/, "
>>
>> I read several blogs and postings, and many people suggested using the RewriteEngine directive.  I've never used the rewriteengine directive in the previous apache configuration (it worked before).
>>
>> In the httpd.conf file
>> I have defined the following:
>>
>> ServerName devbrass2.ana.bna.boeing.com:443
>>
>> DocumentRoot "/usr/brass/www"
>>
>> # This should be changed to whatever you set DocumentRoot to.
>> #
>> <Directory "/usr/brass/www">
>>    Options Indexes FollowSymLinks
>>    AllowOverride All
>>    Order allow,deny
>>    Allow from all
>> </Directory>
>>
>> I'm running on Redhat.
>>
>> Any ideas on how I can fix this problem?
>>
>> Thanks in advance.
>>
>> Mary
>>
>>
>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> The official User-To-User support forum of the Apache HTTP Server Project.
>> See <URL:http://httpd.apache.org/userslist.html> for more info.
>> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
>> For additional commands, e-mail: users-help@httpd.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


RE: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Posted by "Wang, Mary Y" <ma...@boeing.com>.
Thank for your response.  I don't understand what you were saying. 
Can you point out where the possible problem was in the my httpd.conf file?  Or give me an example.

Mary


-----Original Message-----
From: Libo Song [mailto:lsong@google.com] 
Sent: Friday, April 09, 2010 10:27 AM
To: users@httpd.apache.org
Subject: Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

One quick point, you have port in your ServerName, but your request does not. Is that a typo?


On Fri, Apr 9, 2010 at 12:34 PM, Wang, Mary Y <ma...@boeing.com> wrote:
> Hi,
>
> I'm in the process of upgrading to httpd 2.0.46.  I'm getting this error when it goes to this URL https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/ .  The page showed as "The requested URL /projects/ms-tools-charts/ was not found on this server."   The ssl_error_log showed "File does not exist:                     /usr/brass/www/projects/ms-tools-charts/, "
>
> I read several blogs and postings, and many people suggested using the RewriteEngine directive.  I've never used the rewriteengine directive in the previous apache configuration (it worked before).
>
> In the httpd.conf file
> I have defined the following:
>
> ServerName devbrass2.ana.bna.boeing.com:443
>
> DocumentRoot "/usr/brass/www"
>
> # This should be changed to whatever you set DocumentRoot to.
> #
> <Directory "/usr/brass/www">
>    Options Indexes FollowSymLinks
>    AllowOverride All
>    Order allow,deny
>    Allow from all
> </Directory>
>
> I'm running on Redhat.
>
> Any ideas on how I can fix this problem?
>
> Thanks in advance.
>
> Mary
>
>
>
>
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Posted by Libo Song <ls...@google.com>.
One quick point, you have port in your ServerName, but your request
does not. Is that a typo?


On Fri, Apr 9, 2010 at 12:34 PM, Wang, Mary Y <ma...@boeing.com> wrote:
> Hi,
>
> I'm in the process of upgrading to httpd 2.0.46.  I'm getting this error when it goes to this URL https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/ .  The page showed as "The requested URL /projects/ms-tools-charts/ was not found on this server."   The ssl_error_log showed "File does not exist:                     /usr/brass/www/projects/ms-tools-charts/, "
>
> I read several blogs and postings, and many people suggested using the RewriteEngine directive.  I've never used the rewriteengine directive in the previous apache configuration (it worked before).
>
> In the httpd.conf file
> I have defined the following:
>
> ServerName devbrass2.ana.bna.boeing.com:443
>
> DocumentRoot "/usr/brass/www"
>
> # This should be changed to whatever you set DocumentRoot to.
> #
> <Directory "/usr/brass/www">
>    Options Indexes FollowSymLinks
>    AllowOverride All
>    Order allow,deny
>    Allow from all
> </Directory>
>
> I'm running on Redhat.
>
> Any ideas on how I can fix this problem?
>
> Thanks in advance.
>
> Mary
>
>
>
>
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] The requested URL ....was not found on this server - Scratch my head

Posted by Apache Admin <aa...@gmail.com>.
Hi,

Check

RewriteEngine on


Amit






On Fri, Apr 9, 2010 at 10:04 PM, Wang, Mary Y <ma...@boeing.com>wrote:

> Hi,
>
> I'm in the process of upgrading to httpd 2.0.46.  I'm getting this error
> when it goes to this URL
> https://devbrass2.ana.bna.boeing.com/projects/ms-tools-charts/ .  The page
> showed as "The requested URL /projects/ms-tools-charts/ was not found on
> this server."   The ssl_error_log showed "File does not exist:
>       /usr/brass/www/projects/ms-tools-charts/, "
>
> I read several blogs and postings, and many people suggested using the
> RewriteEngine directive.  I've never used the rewriteengine directive in the
> previous apache configuration (it worked before).
>
> In the httpd.conf file
> I have defined the following:
>
> ServerName devbrass2.ana.bna.boeing.com:443
>
> DocumentRoot "/usr/brass/www"
>
> # This should be changed to whatever you set DocumentRoot to.
> #
> <Directory "/usr/brass/www">
>    Options Indexes FollowSymLinks
>    AllowOverride All
>    Order allow,deny
>    Allow from all
> </Directory>
>
> I'm running on Redhat.
>
> Any ideas on how I can fix this problem?
>
> Thanks in advance.
>
> Mary
>
>
>
>
>
>
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>   "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>