I switched my site platform over to dolphin almost a year ago now, and in that time frame I was able to experiment with SEO & what search engines find easiest on D7 sites. Using a sitemap generator was key to discovering what google looks at, but now that I know I want to try and implement some custom rewriterules that might help.
Basically, I'm looking to modify the rewrite rule for any modules content to include *.htm at the end. I have solid proof that google will rank a page higher (on my site) for anything that contains an extension, as opposed to an open ended URL or flat link.
Example:
http://dev.sitename.com/m/photos/view/decal.htm
^ ranks better than the default:
http://dev.sitename.com/m/photos/view/decal
I have come to this conclusion by comparing results of orca forum vs the rest of my sites content. I am able to get every topic to rank on google because topics are served as topicname.htm. It is almost impossible to get anything else to show up if it has what i'd call a flat link (ends with trailing /).
I don't even know if this will function properly, or yield better results, but I'd like to give it a shot. Basic internet research on RewriteRule led me to try this out in .htaccess:
RewriteRule ^photos/view/([^/]+).htm modules/?r=photos/view/$1 [NC]
But, no dice. Anyone got a quick answer on what I'm doing wrong, or if I'm wasting my time with this theory?

