Secure URL
Moderator: General Moderators
Secure URL
hi all,
I am seeing this type of url very frequently.
https://www.somthing/one/cgi-bin/webscr ... le-address
Here no one will know which server side scripting is used for this.
Now i want to use my php code (while posting my forms) in that way. How can i do it? I mean just passing variables and values, how would a server know which file to use?
is there any resources for that
Thanks in advance
Namit Thapa
I am seeing this type of url very frequently.
https://www.somthing/one/cgi-bin/webscr ... le-address
Here no one will know which server side scripting is used for this.
Now i want to use my php code (while posting my forms) in that way. How can i do it? I mean just passing variables and values, how would a server know which file to use?
is there any resources for that
Thanks in advance
Namit Thapa
I didn't get
Thank You for you reply,
But i didn't get what you say?Can You explain it more?Is there any website which can provide online tutorial about this?
About ssl i had already obtainned ssl from versigin and installed it on my machine.
But i didn't get what you say?Can You explain it more?Is there any website which can provide online tutorial about this?
About ssl i had already obtainned ssl from versigin and installed it on my machine.
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
the following have useful information and tidbits to give a direction of searching:
http://httpd.apache.org/docs/1.3/mod/mo ... #forcetype
viewtopic.php?t=22216
http://www.webmasterworld.com/forum92/2500.htm
http://underscorebleach.net/jotsheet/20 ... ck-mt-urls
http://www.devarticles.com/c/a/Apache/U ... -Page-URLs
http://www.evolt.org/article/Making_cle ... /18/22880/
http://httpd.apache.org/docs/1.3/mod/mo ... #forcetype
viewtopic.php?t=22216
http://www.webmasterworld.com/forum92/2500.htm
http://underscorebleach.net/jotsheet/20 ... ck-mt-urls
http://www.devarticles.com/c/a/Apache/U ... -Page-URLs
http://www.evolt.org/article/Making_cle ... /18/22880/
Thank You feyd
Thank You feyd,
Since i am using IIS till now, i can't modify .htaccess file.So I will install Apache and will try to rewrite an engine for that.
Thank you once again
Since i am using IIS till now, i can't modify .htaccess file.So I will install Apache and will try to rewrite an engine for that.
Thank you once again
why wouldn't MultiViews suffice?feyd wrote:ForceType or mod_rewrite rules can perform the mapping to a file.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
You can actually use PHP for CGI scripts... it just doesn't make as much sense 
You can change the extensions that Apache handles with PHP.
You can use mod_rewrite.
But on a standard HTTP server like Apache... (maybe this can be turned off), the HTTP headers contain information which states the content is powered by PHP.
You can change the extensions that Apache handles with PHP.
You can use mod_rewrite.
But on a standard HTTP server like Apache... (maybe this can be turned off), the HTTP headers contain information which states the content is powered by PHP.
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
http://php.net/ini.core#ini.expose-phpd11wtq wrote:But on a standard HTTP server like Apache... (maybe this can be turned off), the HTTP headers contain information which states the content is powered by PHP.