課程
/后端開發(fā)
/PHP
/PHP入門篇
全部按照視頻來的,怎么會這樣?
2015-12-16
源自:PHP入門篇 2-4
正在回答
找到Apache的\conf目錄下的httpd.conf文件,打開它,找到下面這兩行:# Virtual hosts#Include conf/extra/httpd-vhosts.conf把它改成下面這樣:# Virtual hostsInclude conf/extra/httpd-vhosts.conf這個你做了沒有?
如果做了:那么按照一下方式去配置
<VirtualHost *:80>ServerAdmin webmaster@dummy-host2.example.comDocumentRoot "F:\wamp\www\blog\public"ServerName laravel.ys7.comErrorLog "logs/dummy-host2.example.com-error.log"CustomLog "logs/dummy-host2.example.com-access.log" common</VirtualHost>
然后,我再稍微問一下,你確定你的www目錄沒錯嘛?是D盤下的DEMO這個目錄?
單色彩虹
瘋馬少年 提問者
單色彩虹 回復(fù) 瘋馬少年 提問者
瘋馬少年 提問者 回復(fù) 單色彩虹
看阿帕奇官方文檔啊,權(quán)限的問題 將<Directory /> ? ?AllowOverride None ? ?Require all denied</Directory>里面的 兩行代碼 改為<Directory /> ? ?#AllowOverride None ? ?#Require all denied</Directory>
我的按視頻操作也出現(xiàn)這問題,找了半天發(fā)現(xiàn)是這里的問題,httpd.conf文件關(guān)于DocumentRoot "D:/webdir/"下邊的權(quán)限需要注釋掉,視頻只提到了<Directory "D:/webdir/">的權(quán)限問題
DocumentRoot "D:/webdir/"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).?
# First, we configure the "default" to be a very restrictive set of?
# features. ?
<Directory />
# ? ?AllowOverride none
# ? ?Require all denied?
</Directory>
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
有什么不對的嗎?
單色彩虹 回復(fù) 單色彩虹
shrub__ 回復(fù) 單色彩虹
格勞修斯
php.ini?
1、確定你的端口是80
2、確定你更改了httpd.conf文件開啟了虛擬路徑(我描述有點問題,你懂就可以)這個選項
2.1 我有點忘了,這個文件php.ini?貌似也是要配置的
3、確定你更改了httpd-vhosts.conf文件設(shè)置正確
4、確定你更改了host文件
5、確定你重啟了wamp(或者其他)所有的服務(wù)
6、確定你重啟瀏覽器(這個其實無所謂,最好重啟)
在localhost后面加個80端口號就可以了
lynhao 回復(fù) 瘋馬少年 提問者
瘋馬少年 提問者 回復(fù) lynhao
舉報
PHP入門教程輕松學(xué)習,行業(yè)大牛幫您快速掌握PHP編程基礎(chǔ)知識。
1 回答test01.com/ 這是什么情況
3 回答Index of/這是什么情況呢
3 回答麻痹這什么情況?
3 回答報404是什么情況??
1 回答什么樣的情況下需要帶這個引號。
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學(xué)習伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2015-12-18
找到Apache的\conf目錄下的httpd.conf文件,打開它,找到下面這兩行:
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
把它改成下面這樣:
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
這個你做了沒有?
如果做了:那么按照一下方式去配置
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "F:\wamp\www\blog\public"
ServerName laravel.ys7.com
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
然后,我再稍微問一下,你確定你的www目錄沒錯嘛?是D盤下的DEMO這個目錄?
2015-12-21
看阿帕奇官方文檔啊,權(quán)限的問題 將<Directory />
? ?AllowOverride None
? ?Require all denied
</Directory>里面的 兩行代碼
改為<Directory />
? ?#AllowOverride None
? ?#Require all denied
</Directory>
我的按視頻操作也出現(xiàn)這問題,找了半天發(fā)現(xiàn)是這里的問題,httpd.conf文件關(guān)于DocumentRoot "D:/webdir/"下邊的權(quán)限需要注釋掉,視頻只提到了<Directory "D:/webdir/">的權(quán)限問題
DocumentRoot "D:/webdir/"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).?
#
# First, we configure the "default" to be a very restrictive set of?
# features. ?
#
<Directory />
# ? ?AllowOverride none
# ? ?Require all denied?
</Directory>
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
2015-12-18
有什么不對的嗎?
2015-12-17
php.ini?
2015-12-17
1、確定你的端口是80
2、確定你更改了httpd.conf文件開啟了虛擬路徑(我描述有點問題,你懂就可以)這個選項
2.1 我有點忘了,這個文件php.ini?貌似也是要配置的
3、確定你更改了httpd-vhosts.conf文件設(shè)置正確
4、確定你更改了host文件
5、確定你重啟了wamp(或者其他)所有的服務(wù)
6、確定你重啟瀏覽器(這個其實無所謂,最好重啟)
2015-12-17
在localhost后面加個80端口號就可以了