This is my .htaccess file

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 version 1.4.1. When I browse to localhost it's redirect me to localhost/install/requirements/ with message - The requested URL /install/requirements was not found on this server. When I browse to localhost/index.php installation start but after installation the oxwall doesn't work properly.

有帮助吗?

解决方案

"The requested URL /install/requirements was not found on this server."

I guess you need to activate mod_rewrite first in your server.

其他提示

  1. Enable mod_rewrite in web server.
  2. Keep your Oxwall files and folders in your web root.
  3. Try with this url : localhost/install.

This works for me.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top