从Web应用程序的根URL重定向到另一个URL

时间:2014-04-02 02:34:17

标签: apache url-redirection

在我的网络应用程序中,当前登录页面(根URL)为landflo.com 我希望当用户转到landflo.com时,他们会自动获取landflo.com/login(当前是我服务器上的一个页面)。

基本上我希望root是landflo.com/login

这是我的httpd-app.conf文件内容:

<Directory "/opt/bitnami/apps/redmine/htdocs/public">
PassengerEnabled on
Options -MultiViews
AllowOverride All
<IfVersion < 2.3 >
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.3>
Require all granted
</IfVersion>

PassengerAppRoot "/opt/bitnami/apps/redmine/htdocs"
</Directory>

PassengerPreStart http://127.0.0.1:80

和我的httpd-prefix.conf

DocumentRoot "/opt/bitnami/apps/redmine/htdocs/public/"
Include /opt/bitnami/apps/redmine/conf/httpd-app.conf

请让我有一个解决方案。谢谢:))

1 个答案:

答案 0 :(得分:0)

您可以使用RewriteEngine。只需添加“RewriteEngine on”和正确的RewriteRule(参见httpd.apache.org/docs/current/rewrite/remapping.html)