由htaccess进行Wordpress单品重定向

时间:2016-09-05 10:49:52

标签: wordpress .htaccess

我有一个与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/

但它不起作用。

0 个答案:

没有答案