2012-10-18 2 views
-1

이 내 htaccess로 파일oxwall htaccess로

Options +FollowSymLinks 
RewriteEngine On 

AddEncoding gzip .gz 
AddEncoding gzip .gzip 
<FilesMatch "\.(js.gz|js.gzip)$"> 
    ForceType text/javascript 
</FilesMatch> 
<FilesMatch "\.(css.gz|css.gzip)$"> 
    ForceType text/css 
</FilesMatch> 

RewriteCond %{REQUEST_URI} .*/http-bind 
RewriteRule (.*) /http-bind [L] 

RewriteCond %{REQUEST_URI} !^/index\.php 
RewriteCond %{REQUEST_URI} !/ow_updates/index\.php 
RewriteCond %{REQUEST_URI} !/ow_updates/ 
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php 
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.xml|\.feed|robots\.txt|\.raw|/[^.]*)$ [NC] 
RewriteRule (.*) index.php 

Oxwall 버전 1.4.1입니다. localhost로 이동하면 localhost/install/requirements/message로 리디렉션됩니다. 요청한 URL/install/requirements가이 서버에서 발견되지 않았습니다. localhost/index.php 설치를 시작하면 설치가 시작되지만 설치 후 oxwall이 제대로 작동하지 않습니다.

+0

"버전 1.4.1"중 어느 소프트웨어입니까? 아파치? – feeela

+0

Oxwall 버전은 1.4.1입니다. – Didozavar

답변

1

"요청한 URL/설치/요구 사항을이 서버에서 찾을 수 없습니다."

서버에서 먼저 activate mod_rewrite이 필요합니다.

+0

활성화되었습니다. – Didozavar

+0

나는 문제가 .htaccess 파일에 있다고 생각한다. – Didozavar

+0

다른 많은 사용자를 위해 작동하는 Oxwall 디폴트 .htaccess 인 경우 문제가 될 수 없다. – feeela

0
  1. 웹 서버에서 mod_rewrite를 활성화하십시오.
  2. Oxwall 파일 및 폴더를 웹 루트에 보관하십시오.
  3. 다음 url : localhost/install을 사용해보십시오.

이 작품은 저에게 좋습니다.