I have created a New Module in Magento and named it as \"article\". It has two Front end controllers index and article.
And in the article controller i have an action ca
Something like this in .htaccess
RewriteEngine On RewriteRule ^(article/)* article/ [L]
May remove duplicates, but I wouldn't opt for it
A more general case for duplicates:
RewriteEngine On RewriteRule ^([^/]+/)* $1 [L]