How to redirect AMP URLs to the non AMP version?

How to redirect AMP URLs to the non AMP version?

You can try this rule on .htaccess file:

RewriteCond %{REQUEST_URI} (.+)/amp(.*)$
RewriteRule ^ %1/ [R=301,L]

Sharing is caring!