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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.