次のセットアップがあります。
webroot には 2 つのディレクトリが含まれています。1 つは Magento 用、もう 1 つは TYPO3 用です。
TYPO3 を使用するようにいくつかの URL を書き換える追加の ht.access があります。それ以外はすべて Magento に移動する必要があります。この htaccess は次のようになります。
<IfModule mod_rewrite.c>
Options -Indexes
Follow Symlinks
Options +FollowSymLinks
Enable URL rewriting
RewriteEngine On
RewriteRule ^$ /cms/index.php [L]
RewriteRule ^kurse(.*)$ /cms/index.php [L]
RewriteRule ^service(.*)$ /cms/index.php [L]
RewriteRule ^kontakt(.*)$ /cms/index.php [L]
RewriteRule ^informationen(.*)$ /cms/index.php [L]
RewriteRule ^typo3$ /cms/typo3/index.php [L]
RewriteRule ^(.*)$ /shop/index.php [L]
</IfModule>
URL を呼び出すと、http://host/informationen
RealURL がこれをリダイレクトしhttp://host/cms/rmationen
、「パス セグメント エラー」が発生するとします。
RewriteBase として / と /cms/ も試しました。期待どおりに機能するものはありません。
1 つのドメインを使用して両方のシステムを実現するための回避策はありますか?
乾杯マティアス