I'm currently using complex rewrite rules in the .htaccess to prevent broken urls from the removal, but they don't show the old .html extensions anymore which is what I'm looking to achieve.
I don't use Google Webmaster.
The .htaccess looks like this:
Code:
RewriteCond %{HTTP_HOST} !^www\.mydomain\.com
RewriteRule (.*) http://www.mydomain.com/$1 [L,R=301]
RewriteRule [^/]+/([0-9]+)-[^/]+\.html http://www.mydomain.com/showthread.php?t=$1 [L,R=301]
RewriteRule [^/]+/[^/]+-([0-9]+)\.html http://www.mydomain.com/content.php?r=$1 [L,R=301]
RewriteRule [^/]+/[^/]+-([0-9]+)/ http://www.mydomain.com/content.php?r=$1 [L,R=301]
The old VBSEO CMS url's Appeared Like this:
Code:
http://www.mydomain.com/ramen-noodle-recipes/ramen-noodle-mania-contest-3040.html
and it displays in the browser url like this:
Code:
http://www.mydomain.com/content.php?r=3040
I would like to change it back so that it looks like this
Code:
http://www.mydomain.com/ramen-noodle-recipes/ramen-noodle-mania-contest-3040.html
In the browser bar and in the search engines. I purchased dbSEO & imported the settings from vbSEO, but it didn't work, the CMS options in dbSEO aren't the same as they were in vbSEO- they don't allow the CMS Section Names to change.