Rewrite ?cat= to seo friendly URL The 2019 Stack Overflow Developer Survey Results Are InLoad...
How to support a colleague who finds meetings extremely tiring?
How can I define good in a religion that claims no moral authority?
Why don't hard Brexiteers insist on a hard border to prevent illegal immigration after Brexit?
Are spiders unable to hurt humans, especially very small spiders?
How to type a long/em dash `—`
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
What do these terms in Caesar's Gallic wars mean?
Why can't devices on different VLANs, but on the same subnet, communicate?
Button changing its text & action. Good or terrible?
What's the name of these plastic connectors
Kerning for subscripts of sigma?
If I score a critical hit on an 18 or higher, what are my chances of getting a critical hit if I roll 3d20?
Star Trek - X-shaped Item on Regula/Orbital Office Starbases
Loose spokes after only a few rides
How did passengers keep warm on sail ships?
How can I add encounters in the Lost Mine of Phandelver campaign without giving PCs too much XP?
What information about me do stores get via my credit card?
Is it okay to consider publishing in my first year of PhD?
Is bread bad for ducks?
Pokemon Turn Based battle (Python)
Did any laptop computers have a built-in 5 1/4 inch floppy drive?
What is this business jet?
Why does the nucleus not repel itself?
Cooking pasta in a water boiler
Rewrite ?cat= to seo friendly URL
The 2019 Stack Overflow Developer Survey Results Are InLoad review form on external pageChange category urls for one categoryCategory sidebar use SEO url vs cat=Custom link in 3th level category menuRewrite URL for multiples website/store viewscategory listing page and product listing page with condtion in single pageAllow filter by all attributes even if product does not exist in current categoryMagento URL rewrite from SEO friendly URL's to new storeBreadcrumb generating non seo urlMagento 1.9 - Layered Navigation Links Ending with ?cat= or ?brand=Magento 2 URL Rewrite not taking to correct category
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
(Magento) On a category page I can filter products by other categories using the ?cat=... parameter. This works just fine (In combination with Amasty improved navigation). But I would like to make the URL SEO friendly. Now my URL looks like:
https://sitedomain/brands/sony?cat=251
Explained:
"brands" is a category containing subcategories for all my brands.
"sony" (example) is a sub category of "brands" containing all Sony products.
"cat 251" is a category named "cameras" with a different parent (so not a sub category of "brands" or "Sony")
This URL shows me all Sony camera's, so that's just fine. But I would the URL to be:
https://sitedomain/brands/sony/cameras
or if that is not possible something like:
https://sitedomain/brands/sony/filter/cameras
I have no idea how to start. My approach was creating a module that triggers a URL rewrite as soon as the cat parameter exists. But I had no luck at all so far. So is this even possible? And if so, please point me into the right direction. Thanks!
magento-1.9 php layered-navigation url-rewrite seo
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
(Magento) On a category page I can filter products by other categories using the ?cat=... parameter. This works just fine (In combination with Amasty improved navigation). But I would like to make the URL SEO friendly. Now my URL looks like:
https://sitedomain/brands/sony?cat=251
Explained:
"brands" is a category containing subcategories for all my brands.
"sony" (example) is a sub category of "brands" containing all Sony products.
"cat 251" is a category named "cameras" with a different parent (so not a sub category of "brands" or "Sony")
This URL shows me all Sony camera's, so that's just fine. But I would the URL to be:
https://sitedomain/brands/sony/cameras
or if that is not possible something like:
https://sitedomain/brands/sony/filter/cameras
I have no idea how to start. My approach was creating a module that triggers a URL rewrite as soon as the cat parameter exists. But I had no luck at all so far. So is this even possible? And if so, please point me into the right direction. Thanks!
magento-1.9 php layered-navigation url-rewrite seo
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
(Magento) On a category page I can filter products by other categories using the ?cat=... parameter. This works just fine (In combination with Amasty improved navigation). But I would like to make the URL SEO friendly. Now my URL looks like:
https://sitedomain/brands/sony?cat=251
Explained:
"brands" is a category containing subcategories for all my brands.
"sony" (example) is a sub category of "brands" containing all Sony products.
"cat 251" is a category named "cameras" with a different parent (so not a sub category of "brands" or "Sony")
This URL shows me all Sony camera's, so that's just fine. But I would the URL to be:
https://sitedomain/brands/sony/cameras
or if that is not possible something like:
https://sitedomain/brands/sony/filter/cameras
I have no idea how to start. My approach was creating a module that triggers a URL rewrite as soon as the cat parameter exists. But I had no luck at all so far. So is this even possible? And if so, please point me into the right direction. Thanks!
magento-1.9 php layered-navigation url-rewrite seo
(Magento) On a category page I can filter products by other categories using the ?cat=... parameter. This works just fine (In combination with Amasty improved navigation). But I would like to make the URL SEO friendly. Now my URL looks like:
https://sitedomain/brands/sony?cat=251
Explained:
"brands" is a category containing subcategories for all my brands.
"sony" (example) is a sub category of "brands" containing all Sony products.
"cat 251" is a category named "cameras" with a different parent (so not a sub category of "brands" or "Sony")
This URL shows me all Sony camera's, so that's just fine. But I would the URL to be:
https://sitedomain/brands/sony/cameras
or if that is not possible something like:
https://sitedomain/brands/sony/filter/cameras
I have no idea how to start. My approach was creating a module that triggers a URL rewrite as soon as the cat parameter exists. But I had no luck at all so far. So is this even possible? And if so, please point me into the right direction. Thanks!
magento-1.9 php layered-navigation url-rewrite seo
magento-1.9 php layered-navigation url-rewrite seo
edited Nov 8 '16 at 14:14
Tober
asked Nov 8 '16 at 14:09
ToberTober
11
11
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 3 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
There are one extension for it.
Layered Navigation SEO
Find Git hub link for that extension.
In your case you have to create custom route like Mage_Cms module.
Refer this Answer. Git module to start.
Thank you. I have no doubt this plugin works with a clean magento install. But as I mentioned I use Amasty Improved Navigation. Unfortunately these modules do not work together. Besides that, this module has way to many functions for what I need. I only need to rewrite ?cat=.
– Tober
Nov 8 '16 at 15:02
@Tober answer updated. Its not exact answer for you but can be helpful to start.
– Gopal Patel
Nov 8 '16 at 15:20
Thanks for the edit. I haven't implemented it yet, but I think this will help me a lot. If this (in a few days) turns out to be a good help/solution I'll accept your answer.
– Tober
Nov 9 '16 at 14:01
add a comment |
Depending on product and/or category fluctuation and/or their count, it might be easiest to insert rewrite (without redirection) rules (by code) for every possible category combination.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f144742%2frewrite-cat-to-seo-friendly-url%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are one extension for it.
Layered Navigation SEO
Find Git hub link for that extension.
In your case you have to create custom route like Mage_Cms module.
Refer this Answer. Git module to start.
Thank you. I have no doubt this plugin works with a clean magento install. But as I mentioned I use Amasty Improved Navigation. Unfortunately these modules do not work together. Besides that, this module has way to many functions for what I need. I only need to rewrite ?cat=.
– Tober
Nov 8 '16 at 15:02
@Tober answer updated. Its not exact answer for you but can be helpful to start.
– Gopal Patel
Nov 8 '16 at 15:20
Thanks for the edit. I haven't implemented it yet, but I think this will help me a lot. If this (in a few days) turns out to be a good help/solution I'll accept your answer.
– Tober
Nov 9 '16 at 14:01
add a comment |
There are one extension for it.
Layered Navigation SEO
Find Git hub link for that extension.
In your case you have to create custom route like Mage_Cms module.
Refer this Answer. Git module to start.
Thank you. I have no doubt this plugin works with a clean magento install. But as I mentioned I use Amasty Improved Navigation. Unfortunately these modules do not work together. Besides that, this module has way to many functions for what I need. I only need to rewrite ?cat=.
– Tober
Nov 8 '16 at 15:02
@Tober answer updated. Its not exact answer for you but can be helpful to start.
– Gopal Patel
Nov 8 '16 at 15:20
Thanks for the edit. I haven't implemented it yet, but I think this will help me a lot. If this (in a few days) turns out to be a good help/solution I'll accept your answer.
– Tober
Nov 9 '16 at 14:01
add a comment |
There are one extension for it.
Layered Navigation SEO
Find Git hub link for that extension.
In your case you have to create custom route like Mage_Cms module.
Refer this Answer. Git module to start.
There are one extension for it.
Layered Navigation SEO
Find Git hub link for that extension.
In your case you have to create custom route like Mage_Cms module.
Refer this Answer. Git module to start.
edited Apr 13 '17 at 12:55
Community♦
1
1
answered Nov 8 '16 at 14:23
Gopal PatelGopal Patel
3,0152930
3,0152930
Thank you. I have no doubt this plugin works with a clean magento install. But as I mentioned I use Amasty Improved Navigation. Unfortunately these modules do not work together. Besides that, this module has way to many functions for what I need. I only need to rewrite ?cat=.
– Tober
Nov 8 '16 at 15:02
@Tober answer updated. Its not exact answer for you but can be helpful to start.
– Gopal Patel
Nov 8 '16 at 15:20
Thanks for the edit. I haven't implemented it yet, but I think this will help me a lot. If this (in a few days) turns out to be a good help/solution I'll accept your answer.
– Tober
Nov 9 '16 at 14:01
add a comment |
Thank you. I have no doubt this plugin works with a clean magento install. But as I mentioned I use Amasty Improved Navigation. Unfortunately these modules do not work together. Besides that, this module has way to many functions for what I need. I only need to rewrite ?cat=.
– Tober
Nov 8 '16 at 15:02
@Tober answer updated. Its not exact answer for you but can be helpful to start.
– Gopal Patel
Nov 8 '16 at 15:20
Thanks for the edit. I haven't implemented it yet, but I think this will help me a lot. If this (in a few days) turns out to be a good help/solution I'll accept your answer.
– Tober
Nov 9 '16 at 14:01
Thank you. I have no doubt this plugin works with a clean magento install. But as I mentioned I use Amasty Improved Navigation. Unfortunately these modules do not work together. Besides that, this module has way to many functions for what I need. I only need to rewrite ?cat=.
– Tober
Nov 8 '16 at 15:02
Thank you. I have no doubt this plugin works with a clean magento install. But as I mentioned I use Amasty Improved Navigation. Unfortunately these modules do not work together. Besides that, this module has way to many functions for what I need. I only need to rewrite ?cat=.
– Tober
Nov 8 '16 at 15:02
@Tober answer updated. Its not exact answer for you but can be helpful to start.
– Gopal Patel
Nov 8 '16 at 15:20
@Tober answer updated. Its not exact answer for you but can be helpful to start.
– Gopal Patel
Nov 8 '16 at 15:20
Thanks for the edit. I haven't implemented it yet, but I think this will help me a lot. If this (in a few days) turns out to be a good help/solution I'll accept your answer.
– Tober
Nov 9 '16 at 14:01
Thanks for the edit. I haven't implemented it yet, but I think this will help me a lot. If this (in a few days) turns out to be a good help/solution I'll accept your answer.
– Tober
Nov 9 '16 at 14:01
add a comment |
Depending on product and/or category fluctuation and/or their count, it might be easiest to insert rewrite (without redirection) rules (by code) for every possible category combination.
add a comment |
Depending on product and/or category fluctuation and/or their count, it might be easiest to insert rewrite (without redirection) rules (by code) for every possible category combination.
add a comment |
Depending on product and/or category fluctuation and/or their count, it might be easiest to insert rewrite (without redirection) rules (by code) for every possible category combination.
Depending on product and/or category fluctuation and/or their count, it might be easiest to insert rewrite (without redirection) rules (by code) for every possible category combination.
answered Nov 9 '16 at 8:06
pongpong
75249
75249
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f144742%2frewrite-cat-to-seo-friendly-url%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown