Hi,
I'm hoping someone can help.
Currently, my user profiles are accessible by the following URL structure:
domain.com/profile/?user=2
and I am planning on rewriting those URLs so that they are accessible and display as
domain.com/profile/firstname-lastname.
However, the profile's are powered by views that use URL parameter user=userID# to filter the appropriate data. So, based on this, my questions are as follows:
1. If I rewrite my URLs, will it break my views? Or if I register the rewrite with wordpress then will it continue to work?
2. If I need to redo my views, are there any recommendations for how to filter by post author based on the URL structure /profile/firstname_lastname?
Thank you!