顧客のために 2 つの異なるオープンソース システムを使用しています。メインディレクトリにワードプレスをインストールしました。サブディレクトリ (/shop) に OpenCart 1.5.5 をインストールしました
OpenCart で SEO URL を有効にしたいのですが、これを有効にすると、URL は次のようになります。
誰かが私に解決策を持っていれば、私はとてもうれしいです! あなたの努力に感謝!
Wordpress からの HTACCESS:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
opencart からの HTACCESS:
Options +FollowSymlinks
Options -Indexes
<FilesMatch "\.(tpl|ini|log)">
Order deny,allow
Deny from all
</FilesMatch>
RewriteEngine On
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]