2011-03-01 81 views
5

我有一個問題,我想重定向用戶的基礎上從參考url的子字符串,我怎麼可以使用htaccess完成?基於referer HTTP_REFERER重定向htaccess htaccess

  1. 用戶是http://example.com/aqeel/videos/
  2. http://demo.example.com/
  3. 當用戶達到http://demo.example.com/,我希望他被重定向到http://demo.example.com/login/aqeel/上述網頁中的超鏈接,這裏阿基爾是以下形式URL中捕獲的子串步驟1 URL中的htaccess。

由於事先

回答

5

您可以使用下面的代碼,使這項工作:

RewriteCond %{HTTP_REFERER} http\:\/\/example.com/([a-z]+)/videos/ 
RewriteRule (.*)$ /login/%1/ 

我想在我的領域..它的作品...希望太與您合作... :)