난 학창 시절 컴퓨터 관련과를 졸업한것도 아니고, 그렇다고 개발자도 아닐 뿐더러 컴퓨터 관련 학원은 다닌적은 없다.


솔직히 얘길 하면 올초 강남에 있는 xxx 학원에서 포토샵 2개월 과정(직장인 환급)을 다닌적이 있다. 웹디자인 자격증도 있었지만... 사실 사람이 그리워서 다녔건만..


옆자리에 앉아 있던 xx언더웨어 부장님과 많이 친해졌었는데...
명함이라도 받아 놓을껄 지금 생각하니 후회가 되네.. 흠;;


뭐 그건 그렇고...


기본은 전혀 안되어 있고, 
오로지 책과 구글링을 통해 간접적으로 나마 서버와 nsis 를 가지고 놀고 있다.

이번에 php 5.1.6 에서 5.3.x 대로 업데이를 진행하면서 서버 2번 날려먹고
지인한테 물어 결국 업데이트를 성공했다.

그런데 문제가...
분명히 리라이트 모듈이 로드가 됐는데 반응이 없어
php.ini 와 httpd.conf  버추얼호스트 부분을 몇번이고 들었다 놨다 했지만..
이거 뭐 요지부동;;

2박 3일 동안 퀭한 눈으로 줄기차게 rewrite 만 구글링 하고 있었는데...

드디어 오늘 아침에 답을 찾았다.

최초 Optinos indexes FollowSymLinks 밑에 있는 AllowOverride 를 All 로 바꾸고 안되길래
FollowSymLinks 에 있는 AllowOverride none 을 All  로 바꾸니 잘 돌아 간다..

 

 

아흑 쩝;; 머리가 돌이니 몸이 고생한다더니... 


DocumentRoot "/var/www/html"

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features. 
#
<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/var/www/html">

#
# Possible values for the Options directive are "None", "All",
# or any combination of:
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important.  Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
    Options Indexes FollowSymLinks

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
    AllowOverride none

  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기