【发布时间】:2013-11-02 23:41:33
【问题描述】:
我正在尝试重定向我的 Zend 项目的 URL,如下所示:
我可以这样访问我的页面:
http://senderboard/index.php/en/dashboard
但我想要做的是重定向到与此 URL 相同的页面:
http://senderboard/en/dashboard
我可以做这个重定向吗?
我认为我的 VirtualHost 配置中需要添加一些内容:
<VirtualHost *:80>
ServerName senderboard
DocumentRoot /wamp/www/trunk/public
SetEnv APPLICATION_ENV "development"
<Directory /wamp/www/trunk/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>
谢谢!
【问题讨论】:
标签: php apache wamp virtualhost