linux下使用Apache+php实现留言板功能的网站

时间:2022-08-28 17:35:23

一.首先我们的linux服务器上要安装Apache和php 

请参考:http://www.cnblogs.com/dagege/p/5949620.html

二.关闭防火墙服务,关闭selinux 

请参考:http://www.cnblogs.com/dagege/p/5947251.html

三.我们通过FTP服务或使用rz命令将文件放到Apache的根目录下 /var/www/html

示例文件下载:http://files.cnblogs.com/files/dagege/liuyanban.zip

[root@localhost /]# cd /var/www/html/
[root@localhost html]# ls -la
总用量
drwxr-xr-x. root root 10月 : .
drwxr-xr-x. root root 10月 : ..
-rw-r--r-- root root 10月 : index.php
-rw-r--r-- root root 9月 : juezhen.php
drwxr-xr-x root root 10月 : messages
[root@localhost html]# chmod o+w messages/  #给messages目录设置普通有用户的写入权限

四.启动httpd服务

[root@localhost html]# systemctl start httpd.service

五.成果

linux下使用Apache+php实现留言板功能的网站