URL重定向wamp

时间:2013-10-24 10:09:57

标签: php apache wamp virtualhost

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

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用mod_rewrite执行此操作。在你的VirtualHost这样的事情可行。

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

确保您已启用mod_rewrite

希望它可以帮助你前进。