Jump to content

.htaccess wrapper


ajime

Recommended Posts

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 Found
The 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 .htm
AddHandler headered .html

Action 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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.