Hi,
I have a website which I want to redirect to my landing pages.
Can you please tell me whats the best search engine friendly redirect way.

I know that searcn engine sometime bannes the website.
Or can any bosy tell me the way of cloaking.

Thankyou

Dani AI

Generated

For : the safest, search‑engine‑friendly way to move users to landing pages is to use honest server‑side redirects and keep the same content for crawlers and humans. is correct to warn about cloaking — serving different content or redirects only to bots risks penalties. Prefer an HTTP redirect that matches your intent (permanent vs temporary) and avoid client‑side tricks or meta refreshes.

A practical workflow:

  1. Map every old URL to its new landing URL.
  2. Implement server redirects (301 for permanent moves, 302 for temporary).
  3. Update internal links and your XML sitemap to point to the new pages.
  4. Test each mapping (see the curl example) and then submit the sitemap and inspect URLs in Search Console.
    Example checks:
    curl -I https://example.com/old-page

    Server examples (adjust to your host): an Apache .htaccess Redirect 301 /old-page https://example.com/new-page or an Nginx return 301 https://example.com$request_uri;.

Troubleshooting & care points: keep redirect chains to one hop, preserve query strings when needed, avoid loops, and monitor traffic and indexing after the change. If the landing page is temporary for campaigns, use temporary redirects and canonical tags appropriately. For technical background on HTTP redirect semantics see RFC 7231 section on redirects. For practical SEO considerations and testing tips, see Moz's redirection guide Redirection (SEO).

Recommended Answers

All 5 Replies

If you are worried about being banned you shouldn't use cloaking or landing pages. Those are reasons to be banned.

Yeah I know but still want to redirect or do cloaking.
Can you tell me the most safer way.

Thankyou

Sorry. I don't endorse black hat techniques as they only hurt legitimate sites with good content.

Sorry. I don't endorse black hat techniques as they only hurt legitimate sites with good content.

Ok
Can you help me by telling some seo pro tech except these mentioned below:

Meta Keywords
Meta Description
Title
Alt
Link Title
External text ( from other websites)
Link building


Can you please tell me little pro techniques to rank website high


Thankyou

There is no such thing as a pro technique.

Here's SEO made simple: make your pages usable, accessible, have good content, and get as many quality links as you can to them. That's really all there is to it. Everything you listed above, except for meta tags which are virtually worthless, fall into what I described above. If you know how to build a usable and accessible website, can populate it with good content and spend the time promoting it, it will ultimately rank well.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.