And yes, I would purpose having your QRC landing page and from there redirect to the appropriate product page w/ params using a javascript redirect on load.
If you had multiple QRCs for different products, you could have 1 Miva page "/QRC" and add a param for the separate prods / campaigns you might wat to setup.
QRC?p=1
QRC?p=2
QRC?p=3
QRC?p=...
Then on page load, depending on the single parameter passed from the QRC action, direct the user to the correct product page with the correct campaign params.
This could even be /QRC?pPRODUCT-SKU and have the page redirect using that SKU parameter to the prod with campaign params attached
Something like this on the QRC (https://www.yourdomain.com/QRC?p=1):
HTML Code:
$(document).ready( function() {
var newurl;
var url = new URL(window.location.href);
var prod = url.searchParams.get("p");
if (prod == "1") {
newurl = "https://www.yourdomain.com/cuba-900-elias-entralgo-vitier-agramonte.html?utm_source=qrc&utm_medium=qrc-redirect&utm_campaign=mailer";
}
$( location ).attr("href", newurl);
});
I would suggest perhaps making this QRC page normal, without a noindex. Maybe with an on-screen QR code for the site and some info on sharing or something. Then Google should have no issue with the page and users only get redirect forward to the product w/ SEO campaign parameters if they had scanned your code and got to that page with the ?p=PRODUCT-SKU
Leave a comment: