How to blanket redirect AMP URLs in Apache .htaccess
Posted on: October 21, 2022
Written by: Mick Sherry
If you’ve removed Accelarated Mobile Pages (AMP) from your website or blog, you may need to redirect all the old /amp/ URLs back to the original, non-AMP URL. To do this automatically, add this line to the .htacces file on your apache server: RewriteEngine On RewriteCond %{REQUEST_URI} (.+)/amp(.*)$ RewriteRule ^ %1/ [R=301,L] This will blanket […]