Cita:
Ahora lo que intento es que otras urls con esta estructura algo más larga me las transforme también y para eso uso este código que no consigo hacer funcionarSetEnv PHP_VER 5_3
SetEnv REGISTER_GLOBALS 0
Options +FollowSymLinks
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)$ /index.php?op=$1&op2=$2 [L]
SetEnv REGISTER_GLOBALS 0
Options +FollowSymLinks
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)$ /index.php?op=$1&op2=$2 [L]
Cita:
Este básicamente lo que intento hacer es que las url's del tipo Rewriterule ^articulo/(.+)/(.+) /index2.php?op=blog/mBlog&op2=viewArticle&id=$1&id_category=$2
http://www.miweb.com/index/blog/view...&id_category=3 las transforme a http://www.miweb.com/articulo/20/3/ pero no consigo hacerlo funcionar.
El .htaccess completo seria este
Cita:
Gracias, SetEnv PHP_VER 5_3
SetEnv REGISTER_GLOBALS 0
Options +FollowSymLinks
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)$ /index.php?op=$1&op2=$2 [L]
Rewriterule ^articulo/(.+)/(.+) /index2.php?op=blog/mBlog&op2=viewArticle&id=$1&id_category=$2
SetEnv REGISTER_GLOBALS 0
Options +FollowSymLinks
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)$ /index.php?op=$1&op2=$2 [L]
Rewriterule ^articulo/(.+)/(.+) /index2.php?op=blog/mBlog&op2=viewArticle&id=$1&id_category=$2