2012-10-18 18 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/install/requirements/with message - 在此服務器上未找到請求的URL/install/requirements。 當我瀏覽到localhost/index.php安裝啓動,但安裝後,oxwall無法正常工作。

+0

「版本1.4.1」其中的軟件? Apache的? – feeela

+0

Oxwall版本是1.4.1 – Didozavar

回答

1

「在此服務器上找不到請求的URL/install/requirements。」

我想你需要activate mod_rewrite首先在你的服務器。

+0

它已被激活。 – Didozavar

+0

我認爲這個問題在.htaccess文件中 – Didozavar

+0

如果它是許多其他用戶工作的Oxwall默認.htaccess,它不會是問題... – feeela

0
  1. 在web服務器中啓用mod_rewrite。
  2. 將您的Oxwall文件和文件夾保存在您的Web根目錄中。
  3. 試試這個URL:localhost/install。

這適用於我。