标签: .htaccess url rewrite apache2.4
我的网址是mydomain/product
mydomain/product
我想以这种方式重写它:mydomain/category/product
mydomain/category/product
我尝试过以下几行:
RewriteEngine On RewriteCond %{REQUEST_URI} ^/product/ RewriteRule ^(.*)$ /category/$1
但它没有用。