Skip to content

Tag Archives: php

301 Redirect [PHP]

03-Feb-10

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/new-url/");
Done. PHP 301 redirect is now rolling in given directory once you put that, say, in a file named index.php.

PHP strip single tag

18-May-09

Strip Single Tag