.htaccess
上传用户:xuanqunsh
上传日期:2007-01-04
资源大小:58k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. #
  2. # look for these filenames as the directory index
  3. #
  4. DirectoryIndex index.html index.htm index.php3
  5. # PHP Directives for PHP 3
  6. <IfModule mod_php3.c>
  7. #
  8. # local settings for php in this domain
  9. # include path is the path where PHP looks for 
  10. # required and included files
  11. #
  12. php3_include_path ".:./lib:./lib/phplib"
  13. #
  14. # use for debugging - shows PHP errors in browser
  15. #
  16. php3_error_reporting 7
  17. php3_display_errors On
  18. #
  19. # tell PHP to track HTTP variables
  20. #
  21. php3_track_vars On
  22. php3_magic_quotes_gpc Off
  23. php3_magic_quotes_runtime Off
  24. php3_magic_quotes_sybase Off
  25. #
  26. # allows pages to be run
  27. # throught the PHP interpretor
  28. AddType application/x-httpd-php3 .php3
  29. </IfModule>
  30. # PHP Directives for PHP 4
  31. <IfModule mod_php4.c>
  32. #
  33. # local settings for php in this domain
  34. # include path is the path where PHP looks for 
  35. # required and included files
  36. #
  37. php_value include_path ".:./lib:./lib/phplib"
  38. #
  39. # use for debugging - shows PHP errors in browser
  40. #
  41. php_value error_reporting 7
  42. php_flag display_errors On
  43. #
  44. # tell PHP to track HTTP variables
  45. #
  46. php_flag track_vars On
  47. php_flag magic_quotes_gpc Off
  48. php_flag magic_quotes_runtime Off
  49. php_flag magic_quotes_sybase Off
  50. #
  51. # allows pages to be run
  52. # throught the PHP interpretor
  53. AddType application/x-httpd-php .php3
  54. </IfModule>