Skip to content

Instantly share code, notes, and snippets.

@topleague
Created November 22, 2017 15:13
Show Gist options
  • Save topleague/ef1c987eaab75bbdfd22a66f4ea3f2db to your computer and use it in GitHub Desktop.
Save topleague/ef1c987eaab75bbdfd22a66f4ea3f2db to your computer and use it in GitHub Desktop.
Redirect AMP URLs to Non-AMP URLs
# Redirect from AMP to non-AMP path
RewriteEngine On
RewriteCond %{REQUEST_URI} (.+)/amp(.*)$
RewriteRule ^ %1/ [R=301,L]
@thegulshankumar
Copy link

It would be much appreciated if you care to mention source of any snippet. Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment