在点击我的网站的链接说example.com/bla然后它必须检查天气用户登录或不如果他登录然后去上面的链接,如果没有,那么他应该使用htaccess访问登录页面.
.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^$
RedirectMatch 302 ^/(.*) http://myexample.com/login.php/$1
</IfModule>
字符串
我将如何检查使用htacess用户是登录或没有。
1条答案
按热度按时间uhry853o1#
这不能使用. htaccess完成。您必须将此功能写入php脚本,并使用服务器会话存储凭据。