반응형

2024/02 3

[Apache] 사이트 www 없을 경우 리다이렉트하기

www.도메인.com 도메인.com 위 주소는 엄연히 다르다. 그런데, 해당 주소를 매칭시키는 방법은 딱히 없길래 끄적거려본다. 아파치 .conf 파일에서 ServerName example.com ServerAlias www.example.com DocumentRoot /var/www/html RewriteEngine on RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] 리다이렉팅 모듈을 넣어주면 route53를 통하거나 해서 굳이 어렵게 할 필요없이 그냥 www로 자동 리다이렉팅 된다. 끝.

취업/Apache 2024.02.26

[REACT.JS] node-sass 설치 에러.

특이하게도 node-sass가 설치도중 버전이 호환되지 않는다면, Error: spawn powershell.exe ENOENT Error: spawn powershell.exe ENOENT npm ERR! code ECONNRESET npm ERR! code ECONNRESET npm ERR! syscall read npm ERR! errno -4077 npm ERR! network read ECONNRESET npm ERR! network This is a problem related to network connectivity. npm ERR! network In most cases you are behind a proxy or have bad network settings. npm ERR! netw..

취업/React.JS 2024.02.01

[RN] TypeError: Cannot read property 'Constants' of null

React-native-video에서 발생한 에러인데, 해결방법이 레퍼런스를 봐도 모르겠더라... 현재 RN버전이 0.73인데 레퍼런스 내용대로 한다면 android에 따로 추가할 필요가 없다. https://www.npmjs.com/package/react-native-video react-native-video A element for react-native. Latest version: 5.2.1, last published: a year ago. Start using react-native-video in your project by running `npm i react-native-video`. There are 269 other projects in the npm registry using r..

취업/ReactNative 2024.02.01
728x90