Hello guys,

I know it is not exactly a PHP problem, it is about apache's mod_rewrite
which after 4 hours of tentative till 3.30am starts making me think that I
need a LONG vacation ...

I know it's easy... I read all the docs dozens of times and I *feel* that I
am very close to the solution ... please help. ...



Here:
my system: Win2k, Apache 1.3.14, (my test server)
my problem:

in the virtual host of httpd.conf I added the following:

        RewriteEngine On
        RewriteRule   ^(/index.html)$  /start.php?go=$1  

This works perfectly, however what I really need to do is to make it work
not only with /index.html but with everything typed in your browser...
(index.html was only a test to let me know I am in a right direction)

I tried:


        RewriteRule   ^(.*)  /start.php?go=$1
        RewriteRule   ^(.*)$  /start.php?go=$1
        RewriteRule   ^(.+)  /start.php?go=$1
        RewriteRule   ^(.+)$  /start.php?go=$1

        RewriteRule   ^(/.*)  /start.php?go=$1
        RewriteRule   ^(/.*)$  /start.php?go=$1
        RewriteRule   ^(/.+)  /start.php?go=$1
        RewriteRule   ^(/.+)$  /start.php?go=$1


...non of these worked ....   while something's telling me it had to....

Is that a flag that I need ?
(I've tried some combinations of these - didn't work either, I think I need
to confirm it by someone)

please help me with that, I know many of you have done it already... or I am
going to dream about apachectl restart tonight ....

Sincerely,

 Maxim Maletsky
 Founder, Chief Developer

 PHPBeginner.com (Where PHP Begins)
 [EMAIL PROTECTED]
 www.phpbeginner.com


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to