sysmac01 Posted July 3, 2013 Share Posted July 3, 2013 (edited) Hola: me salen errores del tipo /frigorificos/135-bosch-kgn36nw20.html?controller=404 en páginas no encontradas de estadisticas creo que a través del htaccess podría cambiarlo a /frigorificos/135-bosch-kgn36nw20.html y de esta forma redirigir de una página de error a la página del producto. He mirado este código pero no se como adaptarlo a lo que yo quiero hacer rewritecond %{http_host} ^mydomain.com [nc] rewriterule ^(.*)$ http://www.mydomain.com/$1 [r=301,nc] RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.php\ HTTP/ RewriteRule ^(([^/]+/)*)index\.php$http://www.mydomain.com/$1 [R=301,L] por favor una ayuda Edited July 4, 2013 by sysmac01 (see edit history) Link to comment Share on other sites More sharing options...
sysmac01 Posted July 4, 2013 Author Share Posted July 4, 2013 Alguna idea? Link to comment Share on other sites More sharing options...
Enrique Gómez Posted July 4, 2013 Share Posted July 4, 2013 No se si funcionaria pero en teoria si añades esto al principio justo después de RewriteEngine on te elimina controller=404 de la url RewriteCond %{QUERY_STRING} controller=404 RewriteRule (.*) /$1? Link to comment Share on other sites More sharing options...
sysmac01 Posted July 4, 2013 Author Share Posted July 4, 2013 Gracias lo estoy probando después comento mientras voy a ver si consigo entender un poco sobre expresiones regulares para aportar mi grano de arena Link to comment Share on other sites More sharing options...
sysmac01 Posted July 4, 2013 Author Share Posted July 4, 2013 Funciona perfectamente muchas gracias Ahora voy a ver si entiendo lo que he hecho Reitero las gracias por tu ayuda Link to comment Share on other sites More sharing options...
Enrique Gómez Posted July 4, 2013 Share Posted July 4, 2013 Este artículo sobre htaccess esta muy bien : http://perishablepress.com/stupid-htaccess-tricks/ Saludos Link to comment Share on other sites More sharing options...
sysmac01 Posted July 4, 2013 Author Share Posted July 4, 2013 comienzo con esto http://www.desarrolloweb.com/manuales/htaccess-para-urls-amigables.html y paso al tuyo Link to comment Share on other sites More sharing options...
Recommended Posts