Forum Moderators: phranque
I have a .htaccess file with mod_rewrite commands that looks something like:
RewriteRule ^([^/]+)/$ /index\.php?s1=$1
This works fine, and google lists the pages correctly like h**p://www.example.com/article/
But yahoo indexes the pages without the "/" in the end, and that causes a page not found error when people access the site from the yahoo SE.
I could add the following commands:
RewriteRule ^article$ article/ [R]
...but I have about 600 articles and I want to use a more generic redirect.
Does anyone have an answer for how to solve this?