I am an htaccess newbee
I am trying to redirect the old URLS for my site to the new URLS for my site.
The old site used variables in the URL but the new site uses SEO friendly URLs.
When I try to redirect the old URL, it is not w=redirecting and I get the 404 page instead.
I am unsure if the SEO rewrite is the cause of the other rewrite condition failing.
How can I write the RewriteRule so that it redirects the old URL?
Options +FollowSymlinks RewriteEngine On
RewriteCond %{HTTP_HOST} ^WEBADDRESS.co.uk
RewriteRule (.*) http://www.WEBADDRESS.co.uk/$1 [R=301,L] RewriteRule ^(.+).html index.php?seo_title=$1 [nc]
redirect 301 /WEBPAGE http://www.WEBADDRESS.co.uk/WEBPAGE.html
RewriteRule ^http://www.WEBADDRESS.co.uk/test/test.php?c=viewtest&id=56&sat=9&mainsat=1&start=0$ http://www.WEBADDRESS.co.uk/NEW_URL.html
ErrorDocument 404 /PAGE_NOT_FOUND.html