| Posted: 23 December 2009 at 1:52pm | IP Logged
|
|
|
Hi,
I'm using the ISAPI_Rewrite 2.x in the last months I have experienced intermittent failure when the query volume significantly increases the system ISAPI stops working and in some hours back to work, annexed http.ini code my site is http://www.enlazadot.com
[ISAPI_Rewrite]
# This is a comment
# 300 = 5 minutes CacheClockRate 300 RepeatLimit 20
# Block external access to the Helper ISAPI Extension RewriteRule .*\.isrwhlp / [F,I,O]
RewriteCond Host: www\.enlazadot\.com # Rewrite numeric URLs RewriteRule ^/([0-9]+)/.*\.html$ /consulta.asp?IDEmpresa=$1 [I,L]
# Rewrite numeric URLs RewriteRule ^/S([0-9]+)/.*\.html$ /directorio.asp?IDSocio=$1 [I,L]
# Rewrite alphabetic URLs RewriteRule ^/([a-z][a-z\_]{0,100}[a-z])/$ /rubros.asp?rubro=$1
# Rewrite alphabetic rubros URLs RewriteRule ^/([a-z][a-z\_]{0,100}[a-z])/([a-z][a-z\_]{0,100}[a-z])/$ /rubros.asp?rubro=$1&estado=$2
# Rewrite alphabetic rubros URLs RewriteRule ^/([a-z][a-z\_]{0,100}[a-z])/([a-z][a-z\_]{0,300}[a-z])/([a-z][a-z\_]{0,300}[a-z])/$ /rubros.asp?rubro=$1&estado=$2&ciudad=$3
# Rewrite alphabetic letra rubros URLs RewriteRule ^/rubros/([a-z])/$ /rubros.asp?varindice=$1
# Rewrite colonias URLs RewriteRule ^/c([0-9]+)/.*\.html$ /porcolonia.asp?cp=$1 [I,L]
# Rewrite colonias URLs RewriteRule ^/c([0-9]+)/.*/.*/.*\.html$ /porcolonia.asp?cp=$1 [I,L]
# Rewrite alphabetic letra clasificados URLs RewriteRule ^/compra_venta/([0-9]+)/.*\.html$ /clasificados/detalle.asp?IDanuncios=$1 [I,L]
# Rewrite alphabetic letra clasificados URLs RewriteRule ^/anuncios/([0-9]+)/.*\.html$ /clasificados/busregion.asp?clasifica=$1 [I,L]
# Rewrite alphabetic letra rubros URLs RewriteRule ^/anuncios/([a-z][a-z\_]{0,100}[a-z])/inmuebles.html$ /inmobiliaria/busregion.asp?clasifica=$1 [I,L]
# Rewrite alphabetic letra automovil URLs RewriteRule ^/automovil/([0-9]+)/.*\.html$ /automovil/detalle.asp?IDAutomovil=$1 [I,L]
the httpd.parse report next:
Line 6: CacheClockRate directive ignored. It could be used only in the global configuration file.
Any Idea?
|