ここで状況に出くわしています。このサイトhttp://liuitt.comで、次の .htaccess ファイルを使用して Zend を実行しています。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteRule !\.(js|gif|jpg|png|css|txt|eot|svg|ttf|woff|ico|pdf)$ public/index.php [L]
RewriteCond %{REQUEST_URI} !^/public/
RewriteRule ^(.*)$ public/$1 [NC,L]
サブドメインhttp://crm.liuitt.comに FengOffice をインストールしようとしています。
しかし、問題は、500 内部サーバー エラーが発生することです。
それから... liuitt.comのルートフォルダーで.htaccessを無効にすると機能します。
どうすればこの問題を解決できますか?
サブドメインを独自の .htaccess ファイルで動作させるにはどうすればよいですか?