我是Zend Framework的新手。现在我必须对现有的Zend项目进行一些更改。但是在我的本地Xampp Installiation上,所有链接都不起作用。
我已经设置了一个虚拟主机。从那时起,“开始”页面正常工作。
<VirtualHost *:80>
DocumentRoot "C:\xampp_54_zend\htdocs\myproject\public"
ServerName myproject
</VirtualHost>
但是在每个链接上我都会收到错误:“链接不正确的oder不存在”。
编辑:404错误
在Live-Server上一切正常。
如何找到错误并使链接正常工作?
答案 0 :(得分:0)
尝试使用以下配置:
<VirtualHost *:80>
ServerName myproject
DocumentRoot "C:/xampp_54_zend/htdocs/myproject/public"
DirectoryIndex index.htm index.html index.php
<Directory "C:/xampp_54_zend/htdocs/myproject/public">
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>