追加ドメイン 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]