I would like to know if its possible to throw out a 404 for a specific page, specifically the index page to avoid duplicate content. Currently im doing it in PHP like below. if ($_SERVER['REQUEST_URI'] == '/index.php') { header('HTTP/1.1 404 Not Found'); include_once '404.php'; exit(); } Code (markup): And thats fine, but i would just like to know if its possible in htaccess as well. Anyone?