如何在Apache中将Short重定向到FQDN域名

时间:2019-08-06 17:07:27

标签: apache http https webserver httpd.conf

如何在Apache配置中将简短的https域名重定向到fqnd。

我在下面尝试了配置,但是它不起作用。

const accountOperations = (operation) => {
  if(operation === 'createAccount'){
    document.getElementById('login').style.display = "none"
    document.getElementById('register').style.display = "block"
  } else if (operation === 'forgotpassword') {
    document.getElementById('login').style.display = "none"
    document.getElementById('forgot').style.display = "block"
  } else if (operation === 'back') {
    document.getElementById('register').style.display = "none"
    document.getElementById('login').style.display = "block"
  } else if (operation === 'backlogin'){
    document.getElementById('forgot').style.display = "none"
    document.getElementById('login').style.display = "block"
  }
}
// then for example 
// accountOperations('createAccount') 

0 个答案:

没有答案