Jump to content

303 redirect


Recommended Posts

  • 4 weeks later...

This seems to be caused by the canonical redirection. In FrontController.php:

 

if ($_SERVER['REQUEST_URI'] == __PS_BASE_URI__)
 {
  header('HTTP/1.0 303 See Other');
  header('Cache-Control: no-cache');
 }
 else
 {
  header('HTTP/1.0 301 Moved Permanently');
  header('Cache-Control: no-cache');
 }

 

Could anyone shed any light on this? Is it necessary to use the 303?

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 months later...
×
×
  • Create New...