In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] 
wrote:

> RewriteEngine  on
> RewriteBase    /
> RewriteRule    $.* index.php

RewriteRule takes a regular expression as its first parameter 
<http://httpd.apache.org/docs/mod/mod_rewrite.html#RewriteRule>.

The "$" regex meta-character is an end-of-line marker.  It has no special 
meaning at the beginning of a pattern.  If you want a pattern that matches 
"anything including nothing", use:

RewriteRule ^.*$ index.php

-- 
CC

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to