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>
ありがとうございました!