I'm sorry if there is already a question on this I just couldn't find it since I don't know what it is called.
Basically, I want to be able to access certain posts using their id without using GET. For example, I would like to access a post using website.com/post/crazy-clickbait-post
instead of something like website.com/post.php?id=crazy-clickbait-post
. It's just more user-friendly from an advertising perspective.
How would I go about this? I was thinking that maybe there would be a way to use a main post page in the post
folder called something like index.php
and then that would parse the url to get the post id but I'm not sure if that's possible.