then edit your httpd.conf.
$ sudo vi /etc/httpd/conf/httpd.conf
<IfModule mime_module>
.
.
.
AddType text/html .html
</IfModule>
$ sudo service httpd restart
개인 일상, 내가 까먹어서 적는 개발 노트, 각종 리스트들
then edit your httpd.conf.
$ sudo vi /etc/httpd/conf/httpd.conf
<IfModule mime_module>
.
.
.
AddType text/html .html
</IfModule>
$ sudo service httpd restart
모바일웹에서 내용 길이가 윈도우 높이를 넘지 않는데 스크롤되는 것을 차단하기 위해서 아래 코드를 넣어준다.
document.addEventListener("touchmove", function(e) {
e.preventDefault();
}, false);