AMP pages to remove

Hello,

After removing AMP pages how to redirect them to non amp page?
I need solution not to do one-by-one, if possible, please.

Regards

possibly via .htaccess with similar to below, (check with your host) or try 1
and dont forget to backup first then also backup the htaccess, then clear your cache after

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

1 Like