Is there a way in this world to have a php (in this case voting) script on an .html page? I do not want to rename my index.html and change all the links from all the other pages to it..
That'll make apache treat he html file as a php file...
Nick
spectrus
3:11 pm on Sep 27, 2003 (gmt 0)
Hmm.. I just blindly used it and now it just downloads the page and views it locally. I guess I'll just have to give in. :)
Nick_W
3:12 pm on Sep 27, 2003 (gmt 0)
What do you mean, 'blindly used it'? -> Explain please ;)
Nick
spectrus
4:48 pm on Sep 27, 2003 (gmt 0)
well, without much understanding of what it does. Just a fancy expression for copy-paste. ;)
Nick_W
4:51 pm on Sep 27, 2003 (gmt 0)
put it in a file called .htacces and stick that file in your root dir. like /home/users/www/yoursite.com/.htacces
Nick
spectrus
4:57 pm on Sep 27, 2003 (gmt 0)
Yeah, yeah, I know what .htaccess is. :) It's just doing what I said earlier - downloads index.html and views it locally. I just do not understand why.
if your calling it in with a SSI include, why not just add:
AddHandler server-parsed .shtml .html
to your .htaccess in that directory.
mapostel
6:06 pm on Sep 27, 2003 (gmt 0)
A different approach: You could make a new index.php file and create a symbolic link index.html pointing to index.php, provided your configuration allows symbolic links to be followed. Or, alternatively, a RewriteRule might help, transforming requests for index.html to index.php.