htdocs之外的网站

时间:2016-10-23 07:30:09

标签: php xampp

我正在配置htdocs之外的网站,我做了所有更改,这里描述Virtual Host。 但部分完成但路线无效。只显示主页。页面的其余部分显示Object not found!.

喜欢

<VirtualHost *:81>
DocumentRoot "C:\DevlopmentApps\VirtualMarket"
ServerName sjb.localhost
<Directory C:\DevlopmentApps\VirtualMarket>
   Options Indexes 
   AllowOverride none
   Require all granted
</Directory>

现在

http://sjb.localhost:81/sjb is working
http://sjb.localhost:81/sjb/find/ not working

1 个答案:

答案 0 :(得分:0)

现在我想出了其他人应该注意的事情。

如果想在htdocs之外进行配置,需要在以下链接中执行以下步骤

Virtual host

这是一些不赞成的事情。 https://stackoverflow.com/questions/9110179/adding-virtualhost-fails-access-forbidden-error-403-xampp-windows-7?answertab=votes#tab-top

<Directory ..........>
    # AllowOverride All      # Deprecated
    # Order Allow,Deny       # Deprecated
    # Allow from all         # Deprecated

    # --New way of doing it
    Require all granted    
</Directory>

现在解决我的问题的一件事是

Options All
AllowOverride All
Require all granted