묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
짧은 주소 질문
2013.09.01 23:55
짧은주소 를 사용해도
http://site.com/게시판이름/게시물번호
이렇게 구성되는데요..
다른 사이트들 보면
http://site.com/게시물번호
이런식으로 되있던데.. 이렇게 하는건 어떻게 하나요??
아파치웹서버 설정파일 httpd.conf 에서
LoadModule rewrite_module modules/mod_rewrite.so
#표시 푸시고
<Directory "E:/server/htdocs">
#
# 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 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 All
.htaccess 라고 적혀있는 곳 하단에
AllowOverride None 이걸 All
-------------------------------------- 아파치 재시작
이렇게 해도 안되었을 때는
XE설치 루트에 .htaccess 파일이 있습니다.
RewriteEngine On
다음 줄에
RewriteBase /
와 같이 입력해줍니다.
사이트 설치 경로가 /home/xxx.com/public_html -이 경로는 가상으로 대충 적었습니다. 각자에게 맞는 경로가 있겠죠.
/home/xxx.com/public_html 에 설치되었다면 RewriteBase /
/home/xxx.com/public_html/xe에 설치되었다면 RewriteBase /xe/
이렇게 됩니다.