On Friday 10 November 2006 10:23, Daniel C. wrote:
> Having some trouble with rewrite rules.  Here's the rule and surrounding
> lines:
>
> RewriteEngine On
> RewriteLog /var/log/httpd/rewritelog
> RewriteLogLevel 9
> RewriteRule ^/invoices/?([^/]*)/?([^/]*)/?([^/]*)/?  \
>       /invoices/index.php?year=$1&month=$2&day=$3    [PT]

try dropping the leading '/', none of my rules have it:

RewriteRule ^invoices/?([^/]*)/?([^/]*)/?([^/]*)/?  \
      invoices/index.php?year=$1&month=$2&day=$3    [PT]


/*
PLUG: http://plug.org, #utah on irc.freenode.net
Unsubscribe: http://plug.org/mailman/options/plug
Don't fear the penguin.
*/

Reply via email to