Htaccess和enbaling seo url在opencart中无法正常工作

时间:2017-01-19 10:05:56

标签: php .htaccess opencart

我启用了SEO URL,但由于某种原因它没有用,我已经制作了htaccess文件。代码如下: -

RewriteEngine On

RewriteBase

RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L]

RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L]

RewriteRule ^system/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]

1 个答案:

答案 0 :(得分:1)

RewriteBase< --- 你的网站在哪里?是在根网站文件夹(通常是public_html或www)还是子文件夹;喜欢/ cart或/ shop?

尝试:

RewriteEngine On

RewriteBase /

(如果您的网站位于public_html或www)

RewriteEngine On

RewriteBase /shop

(如果您的网站位于/ shop)

此外,opencart的默认htaccess文件是htaccess.txt,确保已将其重命名为服务器上的 .htaccess ,否则Apache无法读取它。< / p>