Hi,
I'm doing something wrong with .htaccess and I don't know how to fix.
When my html page are loaded on the client browser I need to execute a php on the server side.
I'm using an image to know that the page are loading and redirecting the image, into .htaccess, to the php program.
But, the image are never displayed on the client browser, when the server receives the request to the image, it redirects imediatelly to the scripts, without send the image to the client browser.
How could I start the php and finished the load of the initial page?
My .htacces
Options +FollowSymlinks
IndexIgnore *
RewriteEngine on
RewriteRule ^test.gif$ program01.php
Thanks in advance for any help,
Ronaldo