Today i have updated my website but have come across a problem. Ive had to add a new variable to the URL and now im at the risk of losing the traffic from the pages indexed on search engines like google.
Before my URL Structure was:
=
or in php would have been
Now its:
=
or in php is
/file.php?f=2383&mcat=11
---
Is thier anyway i can get my SEO to reflect the changes and work but using the old seo structure or is it not possible?
Thanks.
Darren
Before my URL Structure was:
PHP:
RewriteRule ^view/([0-9]+)/([_A-Za-z0-9-]+).html file.php?f=$1 [L]
PHP:
/view/2383/You-Say-We-Pay.html
or in php would have been
PHP:
/file.php?f=2383
Now its:
PHP:
RewriteRule ^view/([0-9]+)/([0-9]+)/([_A-Za-z0-9-]+).html file.php?f=$1&mcat=$2 [L]
PHP:
/view/2383/11/You-Say-We-Pay.html
or in php is
/file.php?f=2383&mcat=11
---
Is thier anyway i can get my SEO to reflect the changes and work but using the old seo structure or is it not possible?
Thanks.
Darren





