我正在尝试重定向我的 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>
谢谢!