El problema es el siguiente: yo tengo un sitio el contiene por ejempo dos pages una de la siguiente forma:
http://www.cadenagramonte.cu/campito...hp?id=1&tipo=2
que esto en el .htaccess ya le logre poner URL amigables.
y posee otra pagina que contiene la siguiente URl:
http://www.cadenagramonte.cu/campito...ipo_articulo=1
pero cuando pongo otro RewriteRule se fastidia todo.
mira este es mi .htaccess
a ver si puedes ver que es lo que esta pasando...
Cita: Options +FollowSymLinks
RewriteEngine on
RewriteBase /campito
#Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#pagina para ver una noticia
#de aqui para habajo es mi code
RewriteCond %{REQUEST_URI} !(.+)\.css|(.+)\.js|(.+)\.gif|(.+)\.jpg|(.+)\.png [NC]
RewriteCond %{REQUEST_URI} !admin/(.+)\.php|(.+)\.js|(.+)\.html|(.+)\.htm [NC]
RewriteCond %{REQUEST_URI} !paginisaciones/(.+)\.php
RewriteCond %{REQUEST_URI} !curiosidades/(.+)\.php
RewriteCond %{REQUEST_URI} !pages/(.+)\.php
RewriteCond %{REQUEST_URI} !jscripts/(.+)\.php
RewriteRule ^(.*)/(.*)/(.*)$ leer_noticia.php?id=$1&tipo=$2 [QSA,L]
RewriteRule ^(.*)/(.*)$ noticias.php?tipo_articulo=$1 [QSA,L]
ya probe quitandole el [QSA,L] y nada sigue igual.. espero su ayuda...