We have migrated from a windows server to linux server. I trying to redirect all the .aspx urls to html urls.
The static pages works fine so say if I used
but when I try to add a redirect like
the redirect is not working.
Any advice is highly appreciated
The static pages works fine so say if I used
Code:
Redirect 301 /contact.aspx http://mysite.com/contact.html
Code:
Redirect 301 /products.aspx?cid=30&bid=5 http://mysite.com/category/books.html
Any advice is highly appreciated
Comment