添加多站點(diǎn)之后出現(xiàn)The requested URL / was not found on this server.
添加多站點(diǎn)之后出現(xiàn)The requested URL / was not found on this server.沒(méi)有添加多站點(diǎn)之前l(fā)ocalhost能進(jìn)去,加了之后就進(jìn)不去了。
添加多站點(diǎn)之后出現(xiàn)The requested URL / was not found on this server.沒(méi)有添加多站點(diǎn)之前l(fā)ocalhost能進(jìn)去,加了之后就進(jìn)不去了。
2015-01-06
舉報(bào)
2015-03-24
配置多站點(diǎn)之前,我們是單站點(diǎn),在配置之后,我們的多站點(diǎn)的配置覆蓋了之前的單站點(diǎn)的配置,因此把之前那個(gè)也當(dāng)做多站點(diǎn)的一部分配置一下,自然能正常訪問(wèn)了
2015-01-11
修改什么才能讓localhost也能正確地訪問(wèn)?
2015-01-06
改了,剛換了個(gè)版本,很多地方都不用修改
2015-01-06
windows host ?有改嗎
2015-01-06
大神厲害,問(wèn)題解決了
2015-01-06
test01.com test02.com打開(kāi)之后是外國(guó)網(wǎng)站
2015-01-06
哪地方不對(duì)誰(shuí)能給改下
2015-01-06
DocumentRoot "F:/Demo"
#
# 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 />
? ? Options FollowSymLinks
? ? AllowOverride None
? ? Order deny,allow
? ? Allow from all
</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.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "F:/Demo">
? ? #
? ? # 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.2/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:
? ? # ? Options FileInfo AuthConfig Limit
? ? #
? ? AllowOverride all
? ? #
? ? # Controls who can get stuff from this server.
? ? #
# ? onlineoffline tag - don't remove
? ? Order Deny,Allow
? ? Allow from all
? ? # Allow from 127.0.0.1
</Directory>