currently i have made a website which can call data from MySQL database then fit everything into the pre-made HTML template. So basically I am using the follow link:https://gttutor.com/tutor-profile/?GTnum=2701. All the query are searched based on the number after "?" i.e 2701. Yet I found that through this method there wouldnt be an individual website for each profile and hence not searchable in google search engine. May I know how can i overcome this issue? Thanks!
For the follow up discussion
I want:
demo.com/profile/GTnum/2706
being read as:
demo.com/profile/?GTnum=2706
I have tried the following but it doesn't work.
RewriteEngine on
RewriteRule ^GTnum/(\d+)$ ?GTnum=$1 [L]