|
|

楼主 |
发表于 2004-2-12 10:14:44
|
显示全部楼层
我找到了一个php.conf文件内容如下:
#
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
LoadModule php4_module modules/libphp4.so
#
# Cause the PHP interpreter handle files with a .php extension.
#
<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 524288
</Files>
#
# Add index.php to the list of files that will be served as directory
# indexes.
#
DirectoryIndex index.php
我在里面加了一段
<Files *.php3>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 524288
</Files>
现在能浏览.php3的文件了
这样改是不是正确的啊? |
|