rewrite mod사용시 내부 이미지등의 경로 지정시 문제가 생기는 것을 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2965 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-11-13 11:13:36 +00:00
parent 29853571a3
commit f1888ea3c8

View file

@ -1,5 +1,10 @@
RewriteEngine On
# image...
RewriteRule ^([a-zA-Z0-9_]+)/files/attach/images/(.*) ./files/attach/images/$2 [L]
RewriteRule ^([a-zA-Z0-9_]+)/modules/(.*) ./modules/$2 [L]
RewriteRule ^([a-zA-Z0-9_]+)/common/(.*) ./common/$2 [L]
# page
RewriteRule ^([a-zA-Z0-9_]+)/([[:digit:]]+)page$ ./index.php?mid=$1&page=$2 [L]