forget the plugin - do the following:
# BEGIN WordPress
<IfModule mod_rewrite.c>
Options +Indexes
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
# Redirect Old Permalinks
RewriteRule ^enblogopedia.com/(.*)/(.*)/(.*)/(.*)$ http://www.enblogopedia.com/$4 [R=301,L]
# These are the standard WordPress Rules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress