0

我已经在我公司的子域上安装了 opencart,如下所示:http://store.example.in,也就是说,通过在主域下面创建一个子域,因为我不想打扰主站点。不幸的是,即使通过管理面板(系统 | 设置 | 服务器 | 使用 SEO URL -> 是)启用它们,我也无法获得干净的 SEO 友好 URL。我也将.htaccess文件添加到安装根目录,部分内容如下:

# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/ 

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]

我试着把RewriteBase /东西改成RewriteBase /store.example.in/甚至 RewriteBase /store/example.in/但也不去那里。

我尝试寻找答案,发现解决方案的链接很少,其中还包括以下内容:Opencart .htaccess issue 这也没有多大帮助。

4

0 回答 0