redirect with .htaccess a dynamic URL to a new static page
How can I redirect with .htaccess a dynamic URL to a new static page, i.e. pages like:
/page2.php?view=preview&image=33&category=2
/page2.php?view=thumbnailList&category=1
/page2.php?view=thumbnailList&category=3
etc, to:
/index.php/photo-gallery
There are many pages like the 3 exa开发者_Python百科mples on top (and theyt are indexed by Google) and I would like to redirect all the pages which start with /page2.php? to the new location.
You are looking for mod_rewrite (if you use apache).
精彩评论