Nowadays, Developers and Professionals tend to use PHP templates because of two reasons. They are manageable and secondly, we don’t need to advertise our technology as there are no question marks and .php extensions within the URL.
But how to make non-advertisement of your technology possible while sending a jQuery Ajax request to load a PHP file in a div. I mean we would, have to write $.get('phpfile.php') within the script and one can say that voa he is using PHP hmmmm.
Simply, I want to ask is there is any way of loading a PHP through request without advertising your technology as above told.
Some coding will be honored.
I don’t get it. jQuery doesn’t know about PHP files. If your website has 2 “public pages”
www.example.comandwww.example.com/foo, then you can access to the/foopage from the homepage with something like$.get("/foo"). Here I use AJAX, jQuery, and nobody knows if my page use PHP or whatever.Then, you should look for
mod_rewritehas explained by verisimilitude, but rewriting url is not the unique solution. Have a look to this site http://builtwith.com/ and enter a random url. Web servers send, by default, a lot of data about themselves, so you should avoid that behavior too if you want to “hide” the technology used. Have a look here http://xianshield.org/guides/apache2.0guide.html. It’s “a guide to installing and hardening an Apache 2.0 web server to common security standards.”. You may find useful information in there.Edit
And also, “PHP templates” are not related to pages URL at all. For example, you could have multiple URL which use the same “PHP template”.