We have an htaccess file which is presently redirecting non www. to www. See below:
RewriteCond %{HTTPS} (on)?
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC]
RewriteCond %{REQUEST_URI} (.+)
…
RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]
Presently we have vars like detail.asp?prodid=123 but we can out in a fake var to read something like detail.asp?prodid=123&name=thisproduct
What we want the htaccess file to do is rewrite the dynamically displayed pages e.g. detail.asp?prodid=123&name=thisproduct to thisproduct.htm
We also need a permanent 301 redirect in this rewrite rule e.g. [R=301]
No ftp access will be granted. I will personally update it.
Many thanks.