I am on WSN Links 4.0.31
I just notice my site has over 400 pages not found showed on google webmaster tools.
All URLs ended without '/' are not found. such as the followings
www.my-domain-namez.com/Bus...g/Environmental_and_Safety
http://www.my-domain-namez.com/Home_and_Garden
If I add '/' at the end of URL, they will all work.
Here is my .htaccess
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [R]
RewriteRule ^admin/?$ admin/index.php
RewriteRule ^members/([0-9]+)\.html?$ memberlist.php?rewritten=1&page=$1
RewriteRule ^members/([-_/\+A-Za-z0-9äüößèà ]+)-([0-9]+)-trader\.html?$ trader.php?rewritten=1&id=$2
RewriteRule ^members/([-_/\+A-Za-z0-9äüößèà ]+)-([0-9]+)\.html?$ memberlist.php?rewritten=1&action=profile&id=$2
RewriteRule ^members/$ memberlist.php?rewritten=1
RewriteRule ^help/?$ help.php?rewritten=1
RewriteRule ^help/([-_/\+A-Za-z0-9äüößèà ]+)/?$ help.php?rewritten=1&action=showcat&name=$1
RewriteRule ^help/([-_/\+A-Za-z0-9äüößèà ]+)/([-_/\+A-Za-z0-9äüößèà ]+)-([0-9]+)\.html?$ help.php?rewritten=1&action=showitem&id=$3
RewriteRule ^thread/([0-9]+)/?$ comments.php?id=$1
RewriteRule ^thread/([0-9]+)/([0-9]+)/?$ comments.php?id=$1&page=$2
RewriteRule ^[-_/\+A-Za-z0-9äüößèà ]+/[-_/\+A-Za-z0-9äüößèà ]+-([0-9]+)-thread\.html$ comments.php?rewritten=1&id=$1
RewriteRule ^[-_/\+A-Za-z0-9äüößèà ]+/[-_/\+A-Za-z0-9äüößèà ]+-([0-9]+)-thread-([0-9]+)\.html$ comments.php?rewritten=1&id=$1&page=$2
RewriteRule ^[-_/\+A-Za-z0-9äüößèà ]+/[-_/\+A-Za-z0-9äüößèà ]+-([0-9]+)\.html$ link.php?rewritten=1&action=detail&id=$1
RewriteRule ^[-_/\+A-Za-z0-9äüößèà ]+/redirect-([0-9]+)/$ link.php?rewritten=1&id=$1
RewriteRule ^([-_/\+A-Za-z0-9äüößèà ]+)/$ index.php?rewritten=1&action=displaycat&catname=$1
RewriteRule ^([-_/\+A-Za-z0-9äüößèà ]+)/([0-9]+)\.html$ index.php?rewritten=1&action=displaycat&catname=$1&page=$2
RewriteRule ^([0-9]+)/?$ index.php?rewritten=1&action=displaycat&catid=$1
RewriteRule ^([0-9]+)/([0-9]+)/?$ index.php?rewritten=1&action=displaycat&catid=$1&page=$2
RewriteRule ^([0-9]+)/sp([0-9]+).htm$ index.php?rewritten=1&action=displaycat&catname=$1&subpage=$2
All URLs are suppose to work with or without '/' at the end. Any idea how can solve this? |