I have WP on one of my websites installed but right now I want to create one subpage on same domain but without WP.
For example:
https://www.example.com (Current URL with WP)
https://www.example.com/mysubpage (Subpage I want to create but without WP)
So basically, that subpage will be just HTML file that I will upload through FTP.
Is that possible? The main problem I have is if there’s gonna be any conflicts with WP?
]]>/mysubpage/
is a directory then WordPress will not process that URL. Create an index.html
file and place that into the /mysubpage/
directory and that is what will be loaded in a browser.
So https://examples.com/
will go to WordPress and https://www.example.com/mysubpage
will go to that directory and load the index.html
file.
Thanks!
]]>