我想將用戶重定向到通用註冊頁面(如果它們沒有在URL中使用語言環境)以及特定註冊頁面(如果使用語言環境)。出於某種原因,下面是不行的,讓我知道如何解決:apache重寫語言環境特定頁面的規則
RewriteCond %{QUERY_STRING} source=actp
RewriteRule ^/(en|de|fr|zh|ja|jp|ko|kr)/web/login/registration $1/web/login/registration? [R=301,L]
RewriteCond %{QUERY_STRING} source=actp
RewriteRule /web/login/registration /web/login/registration? [R=301,L]
例如:基於
Before: website.com/web/login/registration
after: website.com/web/login/registration?source=actp
before: website.com/kr/web/login/registration
after: website.com/kr/web/login/registration?source=actp
已在Apache的conf文件或本的.htaccess重寫規則?你只是想在URL的末尾添加一個'?'嗎? –
重寫規則位於redirects.conf文件中。第二個的意圖是重定向到通用註冊頁面,如果他們到達沒有區域 – Swaroop
我還需要添加?到網址的末尾,是的 – Swaroop