fatum Posted May 29, 2015 Share Posted May 29, 2015 (edited) Ciao a tutti, sto provando a fare dei redirect nell'htaccess di prestashop per i seguenti url: Redirect 301 /pagina.aspx?c=0001 http://sito.it/pagina1.html Redirect 301 /pagina.aspx?c=0002 http://sito.it/pagina2.html Inserendoli in questo modo però non vanno perché è come se non venissero considerati i parametri get.Io ho bisogno di indirizzare ogni url con parametro a una sua data pagina.Sapete come fare?Grazie in anticipo! Edited June 3, 2015 by fatum (see edit history) Link to comment Share on other sites More sharing options...
fatum Posted June 3, 2015 Author Share Posted June 3, 2015 Ho risolto così: RewriteCond %{QUERY_STRING} ^c=0001$ RewriteRule ^pagina\.aspx$ http://sito.it/pagina1.html? [NC,R,L] RewriteCond %{QUERY_STRING} ^c=0002$ RewriteRule ^pagina\.aspx$ http://sito.it/pagina2.html? [NC,R,L] Questo codice avevo già provato ad usarlo mettendolo in fondo all'htaccess ma non funzionava a causa di una porzione di codice che stava sopra. Per far funzionare il tutto ho dovuto quindi spostarlo in alto al file, prima di # ~~start~~ Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now