animalstyle
BuSo Pro
- Joined
- Mar 28, 2015
- Messages
- 930
- Likes
- 842
- Degree
- 3
I am working with a 2 variable input type that influences the content displayed on the page. The goal is to create pages that are indexed and show in SERP's. For example, I want people to be able to search video game types by console and the resulting page displays the relevant info:
IE: RPGs for Playstation
Building this out with actual pages would be a really large task, and I don't think its the way to handle it ie:
I've worked on a solution to handle this with URL parameters like:
I know Google CAN handle indexing these URLs and you can suggest that the page information changes based on the type/console variables - but it doesn't seem ideal for them or a user.
Would the ideal way to handle this situation be to re-write the URLs based on the URL parameters into a directory structure? Would the URL parameters still be passed?
IE: RPGs for Playstation
Building this out with actual pages would be a really large task, and I don't think its the way to handle it ie:
Code:
www.site.com/find/rpgs/playstation/
I've worked on a solution to handle this with URL parameters like:
Code:
site.com/find/?type=rpgs&console=playstation
I know Google CAN handle indexing these URLs and you can suggest that the page information changes based on the type/console variables - but it doesn't seem ideal for them or a user.
Would the ideal way to handle this situation be to re-write the URLs based on the URL parameters into a directory structure? Would the URL parameters still be passed?