|
Posted by Ed Mullen on 11/12/07 06:47
Ed Mullen wrote:
> Jonathan N. Little wrote:
>> Ed Mullen wrote:
>>> I'm considering using PHP to include the menus on my Web pages. I've
>>> tested it and it works fine (even though I know next to nothing about
>>> PHP). My understanding is that the page that will import content
>>> using a PHP include must have a .PHP extension. Which means that all
>>> my page names (which now end in .html) will change. Which means that
>>> the search engine results will point to non-existent pages.
>>
>> The include file doesn't but the calling file may for it to parse PHP,
>> server settings dependent.
>>
>> <!-- caller.php -->
>> <?php include_once('fileWithPhpCode.txt');
>> ...
>>
>> But it is advisable to make the include file fileWithPhpCode.php so if
>> some hacker call your file directly they will only see the html output
>> not the php source.
>>
>>>
>>> Any thoughts on what I might do about this dilemma?
>>>
>>
>> Very simple example...
>> .htaccess file
>>
>> RewriteEngine On
>>
>> RewriteRule ^(.*)\.html$ $1.php
>>
>
> Excellent. Thank you all. I do have the ability to edit the .htaccess
> file. I will go read more so as not to be quite as dangerous as I am now.
>
Well, that was interesting.
Using the above RewriteRule I did a test. And the only way it works is
if I rename the calling .html file to .shtml. Which, obviously, defeats
the purpose.
Is this something that can configured/over-ridden using the .htaccess
file? Or is it at the server configuration level (which I do not have
access to)?
--
Ed Mullen
http://edmullen.net
http://mozilla.edmullen.net
http://abington.edmullen.net
There are a number of mechanical devices which increase sexual arousal,
particularly in women. Chief among these is the Mercedes-Benz 380SL.
Navigation:
[Reply to this message]
|