Ok, I've stuffed the following code towards the bottom of my httpd.conf file:
The following is showing up in the logs:
That's the good news--it seems that mod_rewrite is doing what it's supposed to do. However, If I try going to anything that contains 'cms/' in the address, I'm getting a "HTTP 400 - Bad Request" return.
those all return HTTP 400. What to do? Liam Morley
lmorley@wpi.edu
"light the deep, and bring silence to the world.
light the world, and bring depth to the silence."
Code:
RewriteEngine On
RewriteLog "D:/rewrite.log"
RewriteLogLevel 9
RewriteRule cms/(.*) cocoon/cms/$1 [PT]
The following is showing up in the logs:
Code:
(2) init rewrite engine with requested uri /cms/
(3) applying pattern 'cms/(.*)' to uri '/cms/'
(2) rewrite /cms/ -> cocoon/cms/
(2) forcing 'cocoon/cms/' to get passed through to next API URI-to-filename handler
That's the good news--it seems that mod_rewrite is doing what it's supposed to do. However, If I try going to anything that contains 'cms/' in the address, I'm getting a "HTTP 400 - Bad Request" return.
those all return HTTP 400. What to do? Liam Morley
lmorley@wpi.edu
"light the deep, and bring silence to the world.
light the world, and bring depth to the silence."