-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

牛墙版本 1.4.1。当我浏览到 localhost 时,它会将我重定向到 localhost/install/requirements/ 并显示消息 - 在此服务器上找不到请求的 URL /install/requirements。当我浏览到 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. 试试这个网址:localhost/install。

这对我有用。

于 2013-12-23T15:16:22.387 回答