Forum Moderators: phranque
RewriteRule ^pagina-(.*?)-(.*?)-(.*?)-.*?$ pagina.php?id=$1&pag=$2&full=$3
RewriteRule ^pagina-(.*?)-(.*?)-.*?$ pagina.php?id=$1&pag=$2
RewriteRule ^pagina-(.*?)-.*?$ pagina.php?id=$1
above you see the content of my htaccess file, somehow in IE it works fine but when i try it in Firefox the complete webserver is unavailble to me (in both IE/FF/ftp/SSH) for about 5 minutes!
on other machines the server remains fine though.
please help me :)
Your code is inefficient, so the following changes might speed it up a little, but this does not answer the FTP/SSH or FF vs. IE differences:
Options +FollowSymlinks
RewriteEngine on
#
RewriteRule ^pagina-([^-]+)-([^-]+)-([^-]+)-.*$ pagina.php?id=$1&pag=$2&full=$3 [L]
RewriteRule ^pagina-([^-]+)-([^-]+)-.*$ pagina.php?id=$1&pag=$2 [L]
RewriteRule ^pagina-([^-]+)-.*$ pagina.php?id=$1 [L]
In all cases, flush your Firefox cache and clear your IE Temporary Internet Files before testing any changes to your .htaccess file.
If your SSH/FTP delays continue after flushing your cache, I suggest you contact your host for assistance, as it will likely require server-level logs and tools to diagnose the problem.
Jim