-1

これは私の .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/ にリダイレクトされ、メッセージが表示されます - The requested URL /install/requirements was not found on this server. localhost/index.php を参照するとインストールが開始されますが、インストール後に oxwall が正しく機能しません。

4

2 に答える 2

1

要求されたURL/install/requirementsがこのサーバーで見つかりませんでした。」

サーバーで最初にアクティブ化mod_rewriteする必要があると思います。

于 2012-10-18T09:51:18.543 に答える
0
  1. Web サーバーで mod_rewrite を有効にします。
  2. Oxwall のファイルとフォルダーを Web ルートに保持します。
  3. この URL を試してみてください: localhost/install.

これは私にとってはうまくいきます。

于 2013-12-23T15:16:22.387 に答える