Redirect/Rewrite 基本身份验证后
Redirect/Rewrite after basic authentication
首先抱歉我的英语不好。
所以我的 raspberry PI 上有一个 Openhab 系统和 Apache。
我有两个组 Admin 和 Users 的基本身份验证,我想重定向用户打开登录页面,以便在使用基本身份验证登录到 UI 页面后重定向。问题是我不能使用 PHP 脚本。
所以我尝试使用 .htaccess
重定向用户
.htaccess:
<Location />
RewriteEngine ON
RewriteCond %{REMOTE_USER} =Elias
RewriteRule ^start/index /basicui/app
</Location>
但是它不起作用,我还没有找到任何可以帮助解决这个问题的方法
我得到了解决方案
RewriteCond %{REQUEST_URI} ^\/start\/index$
RewriteCond %{REMOTE_USER} =Username
RewriteRule .* http://openhab.clubdrei.com/basicui/app [R=302,L]
RewriteCond %{REMOTE_USER} =Username
RewriteRule .* http://openhab.clubdrei.com/basicui/app [R=302,L]
首先抱歉我的英语不好。
所以我的 raspberry PI 上有一个 Openhab 系统和 Apache。 我有两个组 Admin 和 Users 的基本身份验证,我想重定向用户打开登录页面,以便在使用基本身份验证登录到 UI 页面后重定向。问题是我不能使用 PHP 脚本。
所以我尝试使用 .htaccess
重定向用户.htaccess:
<Location />
RewriteEngine ON
RewriteCond %{REMOTE_USER} =Elias
RewriteRule ^start/index /basicui/app
</Location>
但是它不起作用,我还没有找到任何可以帮助解决这个问题的方法
我得到了解决方案
RewriteCond %{REQUEST_URI} ^\/start\/index$
RewriteCond %{REMOTE_USER} =Username
RewriteRule .* http://openhab.clubdrei.com/basicui/app [R=302,L]
RewriteCond %{REMOTE_USER} =Username
RewriteRule .* http://openhab.clubdrei.com/basicui/app [R=302,L]