- 相關(guān)推薦
Linux認(rèn)證系統(tǒng)管理:部署PHP項(xiàng)目應(yīng)該注意的幾點(diǎn)
在部署PHP項(xiàng)目時(shí),有幾點(diǎn)需要特別注意,也是初學(xué)者比較容易忽視的點(diǎn):
一、下載WAMPServer后,如何安裝配置?
二、如何通過客戶端管理MySQL數(shù)據(jù)庫?
三、如何通過IP地址訪問PHP網(wǎng)站,如果在局域網(wǎng)內(nèi)部訪問服務(wù)器上的PHP網(wǎng)站?
針對(duì)第一點(diǎn),注意以下內(nèi)容:
1、下載WAMPServer,地址可以自己去找;
2、安裝WAMPServer
3、此時(shí)PHP、Apache、MySQL都已經(jīng)裝好,甚至可以立即訪問,也可以通過phpMyAdmin訪問到MySQL數(shù)據(jù)庫;
4、如果要開啟偽靜態(tài),需要做如下操作:
加載Rewrite模塊:
在conf目錄下httpd.conf中找到
LoadModule rewrite_module modules/mod_rewrite.so
將前面的注釋#去掉
許在任何目錄中使用".htaccess"文件,將"AllowOverride"改成"All"(默認(rèn)為"None"):
# AllowOverride controls what directives may be placed in .htaccess files
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
# AllowOverride All
針對(duì)第二點(diǎn),注意以下內(nèi)容:
1、通過phpMyAdmin,找到用戶菜單,修改MySQL密碼(默認(rèn)密碼為空)
2、下載Navicat對(duì)MySQL進(jìn)行管理
針對(duì)第三點(diǎn),注意以下內(nèi)容:
1、允許IP地址訪問(默認(rèn)都只允許127.0.0.1訪問):
在Apache的配置文件httpd.conf找到如下內(nèi)容,將Deny from all這一行注釋掉
#
onlineoffline tag - don't remove
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
再找到最后一行的#Include "D:/wamp/alias/*"進(jìn)行注釋。
【Linux認(rèn)證系統(tǒng)管理:部署PHP項(xiàng)目應(yīng)該注意的幾點(diǎn)】相關(guān)文章:
Oracle認(rèn)證應(yīng)該注意的問題07-13
Linux認(rèn)證的概念10-07
2016年Linux認(rèn)證基礎(chǔ)知識(shí):php做權(quán)限管理10-08
Linux認(rèn)證賬戶映射08-06
Linux認(rèn)證有哪些10-30
Linux認(rèn)證題目匯總09-21
Linux認(rèn)證考試科目06-17