我们在网站上有链接。
当用户点击链接时,会弹出在线表单。
如果来自美国以外的用户点击该链接,客户希望用户被重定向到另一个网站。
这可行吗?
网站基于最新的Drupal 8版本,以防有一个模块可以做到这一点。
答案 0 :(得分:0)
您可以像这样使用表单使用hook_form_ID_alter。
function hook_form_FORM_ID_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id) {
// get the IP address of user and determine where they are coming from
// Follow this https://stackoverflow.com/questions/12553160/getting-visitors-country-from-their-ip
// Redirect user
// Follow this https://drupal.stackexchange.com/questions/146185/how-to-create-a-redirection-in-drupal-8
}