Apache vs. PHP configuration
Mavericks, like previous OS X, brought apache2.2.24 and php5.4.17, but by default it's not open.
sudo apachectl start
When you enter localhost in the browser, you should have the Apache standard it works!
Open PHP below, modify Apache configuration file
sudo vim/etc/apache2/httpd.conf
Found it
#LoadModule php5_module libexec/apache2/libphp5.so, remove the front #
The default www folder is very inconvenient, or changed to be in the home to develop more easily, modify the Apache configuration
, or the file above.
#将引号中的目录修改为自己的目录
DocumentRoot "/library/webserver/documents"
......
#将引号中的目录修改为和上面一样的目录
<directory "/library/webserver/documents" >
Create a file index.php in your own directory, write
<?php phpinfo ();?>
To access localhost in the browser, you should show the PHP info page
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.