Is there a way of redirecting all Firefox users IN CURRENT DIRECTORY, to a root error page ("/error.php"), and possibly displaying the status code of 417
Here is my code so far:
RewriteCond %{HTTP_USER_AGENT} ^.*Firefox.*$
RewriteRule .* - [L]
RewriteRule .* /error [R,L=417]
But it just just causes a server error from the current directory, can anyone help???
Thanks