Código Apache:
Ver original
<IfModule mod_rewrite.c> ## Activar RewriteEngine RewriteEngine on RewriteBase / RewriteCond %{SCRIPT_FILENAME} !-d [OR] RewriteCond %{SCRIPT_FILENAME} !-f ## #primera -> surgir RewriteRule ^sur/(.+)$ archivo.php?lur=$1 [L,QSA] #segunda -> la url del navegador RewriteRule ^([a-zA-Z0-9_,\.\-/]*)$ index.php?lur=$1 [L,NC] </IfModule>
entonces si yo le paso una URL como esta
--->http ://localhost/2312321
-< redirige >- http://localhost/index.php?lur=2312321 // en servidor
y lo hace bien hasta alli pero cuando le paso esta otra
-->http://localhost/sur/123[/url]
-< redirige >- http://localhost/index.php?lur=123 // en servidor
y ven hace caso a la #segunda y no a la #primera,
la pregunta es como hacer que cumpla y haga caso a la #primera..