묻고답하기
설치화면이 안보여요. 서버가 index.php를 못읽네요
2015.10.28 11:50
여기는 해외고요. 그동안 XE 잘썼는데. 갑자기 홈페이지가 않보여서.
다지우고 다시 설치하려는데요.
다운받은 XE를 올리고 설치하려는데. 아무것도 안보이네요.
제 홈페이지는 http://mirae.us/xe 인데요. http://mirae.us/xe/index.php 로 하면 설치화면이 보여요.
index.htm 만들어서, 테스트해보면 htm 은 읽는것 같아요.
정녕 index.php 않부치고 홈페이지 만들수는 없나요?
웹호스팅 회사에 전화해서 알아봤는데, 자기 서버는 아무 이상 없다고 하고요.
웹서치 해보니까. Apache 가 php 파일을 메인으로 인식 못해서 그런다는것 같은데요.
제가 Apache 를 수정할수는 없고,
제발 도와주세요~~~~~~~
댓글 7
-
Chuu98
2015.10.29 08:39
.htaccess 파일으로 index.htm을 index.php으로 재작성되도록... -
seacloud
2015.10.29 11:24
답글 고맙습니다. 그런데 제가 초보라서 index.htm을 index.php으로 재작성하는 법을 몰라서요.
조금만 더 도와주시면 감사하겠읍니다.
-
Chuu98
2015.10.29 18:13
기진곰님께서 잘 설명해 주신것 같네요 -
기진곰
2015.10.29 09:19
아파치 설정은 사용자가 어느정도까지 수정할 수가 있습니다.
.htaccess 파일에 아래의 내용을 넣어보세요.DirectoryIndex index.php index.html index.htm
-
seacloud
2015.10.29 11:11
.htaccess 열어서 말씀하신대로 아래와 같이 내용을 넣었는데요. 아직도 index.php 가 안나타나네요. TT
DirectoryIndex index.php index.html index.htm
RewriteEngine On
# reserve XE Layout Template Source File (*.html)
RewriteRule ^(layouts|m.layouts)/(.+)\.html$ - [L,F]
# reserve XE Template Source Files (*.html)
RewriteCond %{REQUEST_URI} !/modules/editor/
RewriteRule /(skins|m.skins)/(.+)\.html$ - [L,F]# conf, query, schema
RewriteRule ^(modules|addons|widgets)/(.+)/(conf|queries|schemas)/(.+)\.xml$ ./index.php [L]# static files
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.+)/files/(member_extra_info|attach|cache|faceOff)/(.*) ./files/$2/$3 [L]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.+)/(files|modules|widgets|widgetstyles|layouts|m.layouts|addons)/(.*) ./$2/$3 [L]# rss , blogAPI
RewriteRule ^(rss|atom)$ ./index.php?module=rss&act=$1 [L]
RewriteRule ^([a-zA-Z0-9_]+)/(rss|atom|api)$ ./index.php?mid=$1&act=$2 [L]
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/(rss|atom|api)$ ./index.php?vid=$1&mid=$2&act=$3 [L]# trackback
RewriteRule ^([0-9]+)/(.+)/trackback$ ./index.php?document_srl=$1&key=$2&act=trackback [L]
RewriteRule ^([a-zA-Z0-9_]+)/([0-9]+)/(.+)/trackback$ ./index.php?mid=$1&document_srl=$2&key=$3&act=trackback [L]
RewriteRule ^([a-zA-Z0-9_]+)/([0-9]+)/(.+)/trackback$ ./index.php?vid=$1&document_srl=$2&key=$3&act=trackback [L]
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([0-9]+)/(.+)/trackback$ ./index.php?vid=$1&mid=$2&document_srl=$3&key=$4&act=trackback [L]# document permanent link
RewriteRule ^([0-9]+)$ ./index.php?document_srl=$1 [L,QSA]# mid link
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9_]+)/?$ ./index.php?mid=$1 [L,QSA]
# mid + document link
RewriteRule ^([a-zA-Z0-9_]+)/([0-9]+)$ ./index.php?mid=$1&document_srl=$2 [L,QSA]# vid + mid link
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/?$ ./index.php?vid=$1&mid=$2 [L,QSA]
# vid + mid + document link
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([0-9]+)$ ./index.php?vid=$1&mid=$2&document_srl=$3 [L,QSA]# mid + entry title
RewriteRule ^([a-zA-Z0-9_]+)/entry/(.+)$ ./index.php?mid=$1&entry=$2 [L,QSA]
# vid + mid + entry title
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/entry/(.+)$ ./index.php?vid=$1&mid=$2&entry=$3 [L,QSA]#shop / vid / [category|product] / identifier
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([a-zA-Z0-9_\.-]+)$ ./index.php?act=route&vid=$1&type=$2&identifier=$3 [L,QSA] -
기진곰
2015.10.29 11:22
그래도 안된다면 호스팅업체 쪽에 문의를...
-
seacloud
2015.10.29 11:25
네. 고맙습니다.