Extra Form
PHP PHP 5.3
CMS XpressEngine

주소창에 http://www.leancanvas.io/contact라고 입력하면

http://www.leancanvas.io/index.php?act=dispMemberSavedDocument&mid=lcIndex로 이동하게끔 리다이렉션을 하고싶은데요, 방법을 모르겠어서 질문드립니다!!

  • profile
    호스팅 또는 apache 사용하시면 .htaccess로 리다이렉트가 가능하고
    nginx 사용하시면 /etc/nginx/conf.d/default.conf 로 리다이렉트가 가능합니다

    구글에 htaccess redirect 라고 치시면 많이 나옵니다

    아래는 nginx 기준 리다이렉트 방법입니다.
    location /contact{
    redirect 301 http://www.leancanvas.io/index.php?act=dispMemberSavedDocument&mid=lcIndex;
    }
  • profile profile
    감사합니다!!!