0

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

谢谢!

4

1 回答 1

1

您可以使用mod_rewrite来执行此操作。在你这样的VirtualHost东西可以工作。

RewriteEngine on        
RewriteCond %{REQUEST_URI} !^/index\.php
RewriteRule ^(.*) /index.php$1 [QSA,L]

确保您已mod_rewrite启用。

希望对你有所帮助。

于 2013-10-24T12:15:46.983 回答