我有一个与woocommerce的主题,我想重写甚至单个产品链接。 这是我的htaccess文件:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteRule ^formations/([A-Za-z0-9_]+) /construction-de-la-formation-en-cours/ [R=301]
</IfModule>
# END WordPress
我在行中添加了myslef
RewriteRule ^formations/([A-Za-z0-9_]+) /construction-de-la-formation-en-cours/ [R=301]
将http://domain.com/formations/product-name/重写为http://domain.com/construction-de-la-formation-en-cours/
但它不起作用。