Home >Backend Development >PHP Tutorial > 鼓捣Wordpress学点PHP

鼓捣Wordpress学点PHP

WBOY
WBOYOriginal
2016-06-13 13:24:31860browse

捣鼓Wordpress学点PHP
给哥哥的车行(卖电动车和自行车的小店)搞个主页,用Wordpress,也借此学习下PHP。
1、Wordpress搭建完成 2011-7-31










FAQs
Q:到哪儿学PHP?最好有基础教程。
A:http://www.w3school.com.cn/php/

Q:安装完Wordpress,为什么首页显示目录,而没有显示index.php?
A:修改配置文件httpd.conf,

<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>
中加入index.php,修改后为
<IfModule dir_module>
    DirectoryIndex index.php index.html
</IfModule>
这样Apache就可以加载index.php了。
Q:在IE7下,上传图片为什么总是失败?
A:Wordpress 3.2.1 版本管理端不支持IE7,换成Chrome问题解决。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn