ajime Posted December 8, 2006 Share Posted December 8, 2006 Hello everyone,I've been trying to get a php/.htaccess wrapper to work properly. The tutorial for this is found at [url=http://www.devpapers.com/article/323]http://www.devpapers.com/article/323[/url]. I've set everything up as the author has suggested, but I'm getting an error message when I try to view a page. The error I receive is: Not FoundThe requested URL /header/header.php/test/sample.html was not found on this server.Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. It's obviously a pathing issue, but I'm not sure where to start. The .htaccess file is:[code]AddHandler headered .htmAddHandler headered .htmlAction headered /header/header.php[/code]and the header.php code is[code]<?php$header = "header.html";$footer = "footer.html";$file = $_SERVER["PATH_TRANSLATED"]; print $file;readfile($header);readfile($file);readfile($footer);?>[/code]It seems like it should be simple, but I can't seem to figure it out.Thanks,Jesse Link to comment https://forums.phpfreaks.com/topic/29961-htaccess-wrapper/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.