반응형
<script language="Javascript" type="text/javascript">
var host = location.host.toLowerCase();
var currentAddress = location.href;
if (host.indexOf("www")== -1)
{
currentAddress = currentAddress.replace("//","//www.");
location.href = currentAddress;
}
</script>
다른 PHP 소스들을 갖다 써본결과...
javascript 가 제일 잘 작동하고 나머지는 작동이 잘 안된다.
반응형
'웹프로그래밍' 카테고리의 다른 글
[Javascript] www. 자동으로 붙이기 완벽해결소스 (0) | 2013.09.09 |
---|---|
[JavaScript] input type="text" 에서 숫자만 입력받기 (0) | 2013.08.23 |
XE (회원정보) 포인트, 레벨 표시 (0) | 2013.06.02 |
HTML 특수문자표 (0) | 2013.03.15 |
geoIP 로 X , Y (위도,경도) 좌표 뽑기 (0) | 2012.11.23 |