Questions About Phoenix's URL Structure
Posted: Tue Jul 09, 2024 7:20 am
Hello all I'm just going through Google Search Console and some things stuck out about the url structure of Phoenix.
I have some questions that I need help sorting out logically.
I'll post some examples from a 1.0.8.4 version shop.
Here, after product_info.php, you have something dealing with pagination [page=1] then there's sorting [sort=1a] then you have the [manufacturer's_id] and finally the [products_id]. I believe the search engines are reading this: page 1, sort 1a, manufacturer 59, product 11586.
Not much sense.
If search engines read and process data from left to right like humans, then would this be more logical?
This makes more sense in my opinion. It reads product 11586 of manufacturer 59 on page number 1 sorted by 1a.
Here's another example:
Again, the products_id is at the end. I have no examples for category pages. From what I observed, cPath comes immediately after index.php? which makes sense.
@burt @ecartz Do you think this may cause canonical and indexing issues with search engines? Can the url structure be rearrange easily? Would this affect url addons if url structure is rearranged?
What is others' thoughts?
Thanks for reading and your inputs.
I have some questions that I need help sorting out logically.
I'll post some examples from a 1.0.8.4 version shop.
Code: Select all
https://xxxxxxxxxxxx.com/product_info.php?page=1&sort=1a&manufacturers_id=59&products_id=11586Not much sense.
If search engines read and process data from left to right like humans, then would this be more logical?
Code: Select all
https://xxxxxxxxxxxx.com/product_info.php?products_id=11586&manufacturers_id=59&page=1&sort=1aHere's another example:
Code: Select all
https://xxxxxxxxxxxx.com/product_info.php?lrange=2&sort=3a&page=3&products_id=10712@burt @ecartz Do you think this may cause canonical and indexing issues with search engines? Can the url structure be rearrange easily? Would this affect url addons if url structure is rearranged?
What is others' thoughts?
Thanks for reading and your inputs.