snagovskiy Posted March 31, 2017 Report Share Posted March 31, 2017 Уважаемые господа! Подскажите пожалуйста, как сделать редирект вот таких урлов: /shop_item.html?id=tesla-three-kitна/products/tesla-three-kit Пишу в htaccess: RewriteRule ^products/?$ shop_item.html?id=$1 [L,R=301] не работает =( Quote Link to post Share on other sites
yr4ik Posted March 31, 2017 Report Share Posted March 31, 2017 RewriteRule ^shop_item.html?id=([\w\d-]+)$ /products/$1 [L,R=301] Quote Link to post Share on other sites
snagovskiy Posted March 31, 2017 Author Report Share Posted March 31, 2017 RewriteRule ^shop_item.html?id=([\w\d-]+)$ /products/$1 [L,R=301] Спасибо, но тоже не работает... Quote Link to post Share on other sites
snagovskiy Posted March 31, 2017 Author Report Share Posted March 31, 2017 RewriteCond %{QUERY_STRING} ^id=tesla-three-kit$ RewriteRule ^shop_item\.html$ /products/tesla-three-kit/? [L,R=301] Вот это работает, но только для одного урла, господа подскажите пожалуйста как по маске это отредиректить.... Quote Link to post Share on other sites
yr4ik Posted April 1, 2017 Report Share Posted April 1, 2017 RewriteCond %{QUERY_STRING} ^id=tesla-three-kit$ RewriteRule ^shop_item\.html$ /products/tesla-three-kit/? [L,R=301] Вот это работает, но только для одного урла, господа подскажите пожалуйста как по маске это отредиректить.... да что то забыл что в патерне RewriteRule не идет GET RewriteCond %{QUERY_STRING} ^id=([\w\d-]+)$ RewriteRule ^shop_item\.html$ /products/%1 [L,R=301] Quote Link to post Share on other sites
snagovskiy Posted April 1, 2017 Author Report Share Posted April 1, 2017 Это должно работать спасибо)))) Я вчера так и не дождался, сам догадался как сделать, только я поставил по аналогии с другим редиректом RewriteCond %{QUERY_STRING} ^id=([^/]+)RewriteRule ^shop_item.html$ /products/%1/? [L,R=301] в чем разница между ([\w\d-]+) и ([^/]+) Quote Link to post Share on other sites
yr4ik Posted April 1, 2017 Report Share Posted April 1, 2017 разрешены буквы цифры _ и -разрешены все символы кроме / Quote Link to post Share on other sites
snagovskiy Posted April 2, 2017 Author Report Share Posted April 2, 2017 разрешены буквы цифры _ и -разрешены все символы кроме / yr4ik спасибо! Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.