0

追加ドメイン example-domain.com 内の通常の HTML ページを参照する際に問題が発生しています。

ここに私のファイル構造があります

public_html
        -css
        -img  
        -js
        example-domain.com              <- get server error
                          - index.html    
                          -products.html   
                          - contact.html
        -system
         .htaccess  
         index.php

メイン サイトで codeigniter フレームワークを使用し、追加ドメイン example-domain.com 内で単純な html を使用しています。example-domain.com を参照する URL を入力すると、500 内部サーバー エラーが発生しますメインドメインに使用しているファイル。追加のドメイン内にも単純な .html ファイルをロードするように変更するにはどうすればよいですか。

私の.htaccess

RewriteEngine on
RewriteCond $1 !^(index\.php|img|css|js|uploads|robots\.txt|sitemap\.xml)
RewriteRule ^(.*)$ index.php/$1 [L]
4

2 に答える 2

1

現在、要求された URL がファイルでもディレクトリでもない場合、リダイレクトを実行しようとしています。これらのディレクティブを使用して実行できます。

RewriteEngine On
Options -MultiViews

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [L]
于 2013-07-29T20:23:49.167 に答える
0
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
于 2013-07-30T06:39:03.113 に答える