1
如何重寫我的搜索頁面的URL Opencart的就是喜歡重寫條件不工作
http://IP/opencart/index.php?route=product/search&filter_name=24
但我需要在任何甲酸是一種像
http://localhost/opencart/product/search/42
否則別指望它顯示userfreindly.I試圖像
RewriteEngine On
RewriteBase /opencart
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [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 /opencart
RewriteRule ^search$ index.php?route=product/search [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/search$
RewriteRule ^([^?]*) index.php?route=$1 [L,QSA]
在您的webroot中創建一個名爲.htaccess的文件並添加我的答案中的內容。還在RewriteBase行上面添加一行說RewriteEngine On – Ruben
我知道@Ruben,但在哪一行我需要把....你可以看到我的htaccess文件內容在我的問題 – Gautam3164
幫我請這 – Gautam3164