How to get mod-rewrites and php 301 redirects?

I was hoping that someone could also help me set up a redirect on the pcs4cheap.ca php site .... I tried to rewrite the mod via .htaccess, works fine, but doesn't allow any login or admin page to open!

Any other way I could achieve this would be greatly appreciated =)

+1


a source to share


1 answer


Check this question:

What's the best way to redirect a web page without using javascript



In PHP this is done with the header () function.

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/");
exit;

      

+1


a source







All Articles