I have a site with a few PHP files responsible for showing all of the context. All of the URLs I have look like ...page.php?id=###. Is it possible to assign some path to each id so that a visitor thinks that he is visiting static files?
I have a site with a few PHP files responsible for showing all of
Share
You can use URLRewrite to rewrite e.g.
/page/##/->page.php?id=##:See this guide HERE.