Untitled

By Melodic Flamingo, 10 Years ago, written in Plain Text, viewed 825 times.
URL http://pb.stoleyour.com/view/a4e20603 Embed
Download Paste or View RawExpand paste to full width of browser
  1. #
  2. # Cause the PHP interpreter to handle files with a .php extension.
  3. #
  4. <FilesMatch \.php$>
  5.     SetHandler application/x-httpd-php
  6. </FilesMatch>
  7.  
  8. #
  9. # Allow php to handle Multiviews
  10. #
  11. AddType text/html .php
  12.  
  13. #
  14. # Add index.php to the list of files that will be served as directory
  15. # indexes.
  16. #
  17. DirectoryIndex index.php
  18.  
  19. #
  20. # Uncomment the following lines to allow PHP to pretty-print .phps
  21. # files as PHP source code:
  22. #
  23. #<FilesMatch \.phps$>
  24. #    SetHandler application/x-httpd-php-source
  25. #</FilesMatch>
  26.  
  27. #
  28. # Apache specific PHP configuration options
  29. # those can be override in each configured vhost
  30. #
  31. php_value session.save_handler "files"
  32. #php_value session.save_path    "/var/lib/php/session"
  33.  
  34.  

Replies to Untitled rss

Title Name When
Re: Untitled Ivory Terrapin 10 Years ago.

Reply to "Untitled"

Here you can reply to the paste above