這段時間開始折騰下Laravel,先安裝了wamp 2.5,本人喜歡把路徑設置到F:\Workspace下,因此修改了wamp的默認www路徑,詳細方法請參考BLOG(轉自:http://blog.csdn.net/wxlhlh001/article/details/8235224)html
不少朋友都安裝了WAMP,安裝後,WAMP的默認服務器文件夾地址爲C:\WAMP\www (按照默認安裝後的地址)。
此時,咱們點擊「WWW目錄地址」就會打開C:\WAMP\www 這麼目錄。
android
若是咱們想將WEB服務器的地址修改到其餘盤裏,例如D:\MyWEB 改如何弄呢?
步驟以下:
一、打開Apache的配置文件,httpd.conf 找到下面的代碼修改爲咱們的新WEB服務器地址。
瀏覽器
二、打開WAMP的安裝目錄,找到 wampmanager.ini 和 wampmanager.tpl 兩個文件,用記事本打開。
ide
三、修改 wampmanager.ini 中的代碼,將其修改成咱們的新WEB服務器地址。
this
四、修改 wampmanager.tpl 中的代碼,將其修改成咱們的新WEB服務器地址。
.net
五、退出WAMP,再重新啓動WAMP 而後就能夠了!!
www目錄是修改好了,但是當訪問localhost時出現了403 Forbidden錯誤,故又找了下修改apache2.4.9的403問題的方法,詳細參考以下(轉自:http://blog.163.com/qingshui1bei@yeah/blog/static/124078678201411214849498/)
用wamp搭建了個android的後臺,經過本機瀏覽器訪問成功,可是經過手機訪問卻失敗,返回錯誤代碼403。網上搜了一些答案,都不怎麼清楚,有的還比較亂來。後來綜合網上的,發現只改一處便可。
<Directory "D:/wamp/www/">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride all
#
# Controls who can get stuff from this server.
#
# onlineoffline tag - don't remove
# Require local
Allow from all
Require all granted
</Directory>