Jump to content

inlcude php in shtml without modifying htaccess


toolman

Recommended Posts

Hi,

 

I am trying to add the following code to a SHTML file:

 

<?php
if(isset($_COOKIE['cookiename']))
{ echo "cookie set";
}
else
{ echo "<div id=\"autoload\">Cookie not set</div>"
;}

setcookie("cookiename", "someValue", time()+3600);
?>

 

However, I don't want to modify the htaccess file to allow this. Is there any way I can include otherwise?

 

Thanks

a] Make a .php file include() that file.

b] Edit the Apache config (main server config or virtualhost config) to parse .shtml files.

c] Rename the file.

 

Any particular reason you don't want to touch the .htaccess? Besides renaming the file, that's really the best solution.

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.