Our main product page is
www.mysite.com/solutions/my-main-product.html, and as our company has grown we have now added more pages on these products these pages all sit in a folder called
www.mysite.com/my-main-product/modulename.html, but the main page resides at its origianl URL in 'solutions' as it has all the links, rankings etc.
Now we are putting out a print advert and want to set up a simple url for our main product:
www.mysite.com/my-main-product
so essentially an index page within
www.mysite.com/my-main-product/ So i made the index.html page and then put a 301 redirect in the htaccess that read
redirect 301 /my-main-product/
http://www.mysite.com/solutions/my-main-product.html
this works fine - only problem is that there are images within the 'my-main-product' folder that are used throughout the site and these links break when that line above is in the htaccess file as the img url link becomes "http://www.mysite.com/my-main-product
.html/imagename.gif"
the redirect is adding the extension to the image url.
is there a way to implement the redirect using htaccess and not have to move all these images
OR
can i use a javascript redirect, and then block that page from the SEs since it is only for those coming from print media anyhow so the SEs need never ever see
www.mysite.com/my-main-product/index.html. would using this JS redirect have any adverse effect on any other pages in my site, espexially the one it is redirecting to, if the SEs never see it?
hope i have explained this issue coherently and thanks for any advice offered.