Remove index.php?route=common/home from OpenCart

前端 未结 15 1144
太阳男子
太阳男子 2020-11-29 04:56

I currently have User SEO URL\'s set to Yes in OpenCart Admin.

System -> Settings -> Store -> Server -> User SEO URL\'s

15条回答
  •  再見小時候
    2020-11-29 05:12

    To remove index.php?route= from urls I simply recommend to edit .htaccess file.

    Just add this:

    RewriteCond %{THE_REQUEST} \ /index\.php\?_route_=?([^&\ ]*)
    RewriteRule ^ /%1? [L,R]
    

    I encounter no problems whatsoever. Just remember that you need to have RewriteEngine enabled. Look for this line: RewriteEngine On. If not present, past it before above code.

提交回复
热议问题