Mobile app version of vmapp.org
Login or Join

Login to follow query

More posts by @Pope3001725

3 Comments

Sorted by latest first Latest Oldest Best

 

@Shelley277

If you do choose to do a 301 redirect, you can set headers to stop the browser caching the redirect:

<ifModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 1 seconds"
</ifModule>

<ifModule mod_headers.c>
<filesMatch "$">
Header set Cache-Control "store, no-cache, must-revalidate"
</filesMatch>
</ifModule>


Possibly some adjustment is required on filesMatch depending on your redirects.

10% popularity Vote Up Vote Down


 

@Rambettina238

It generally makes little difference.

A 301 redirect may cause a short term drop in ranking, but nothing to worry about.

An internal rewrite keeps the same URLs. You just need to be careful that you don't end up with duplicate content on multiple URLs.

10% popularity Vote Up Vote Down


 

@Sherry384

mod_rewrite is the module that enables the redirection.

301 redirection should be done if you have a content on page A and not that has been migrated to a different subdomain or another link all-together.

So 301 redirect page A -> page B to indicate this to crawler to get complete seo authority passed from page A to B

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme