473,465 Members | 1,489 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

How to encrypt URL Address ?

How to encrypt URL Address ?

==============================
Now i 'm play about PHP language .
and now i want ot know how to " advance url display "
like encrypt URL Address in browser ( IE , Opera , others )

like Display ::

http://posting.google.com/post?cmd=post&justr=
http://127.0.0.1:4664/&s=yC1WvvwfhpLmt75SPkYGMFFgmsw
http://www.google.com/grphp?hl=th&tab=ig&q=

it 's not show surname file ( .php .asp .html .others )
Anyone can suggest me ? sir
Thank you for advance
Pratchaya
Jul 17 '05 #1
6 22139
Pratchaya wrote:
http://posting.google.com/post?cmd=post&justr=
http://127.0.0.1:4664/&s=yC1WvvwfhpLmt75SPkYGMFFgmsw
http://www.google.com/grphp?hl=th&tab=ig&q=

it 's not show surname file ( .php .asp .html .others )
Anyone can suggest me ? sir


Without knowing more than what you've said, I'd suggest you
take a look at content negotiation - MultiViews on Apache

http://httpd.apache.org/docs-2.0/con...gotiation.html

or mod_rewrite

http://httpd.apache.org/docs-2.0/mod/mod_rewrite.html

--
Jock
Jul 17 '05 #2
On Sun, 10 Jul 2005 11:28:56 GMT, John Dunlop wrote:
Pratchaya wrote:
http://posting.google.com/post?cmd=post&justr=
http://127.0.0.1:4664/&s=yC1WvvwfhpLmt75SPkYGMFFgmsw
http://www.google.com/grphp?hl=th&tab=ig&q=

it 's not show surname file ( .php .asp .html .others )
Anyone can suggest me ? sir


Without knowing more than what you've said, I'd suggest you
take a look at content negotiation - MultiViews on Apache

http://httpd.apache.org/docs-2.0/con...gotiation.html

or mod_rewrite

http://httpd.apache.org/docs-2.0/mod/mod_rewrite.html


Or, for The Simple Case(s): .htaccess / redirect [permanent].
Ask Google.

Jonesy
--
Marvin L Jones | jonz | W3DHJ | linux
Pueblo, Colorado | @ | Jonesy | OS/2 __
38.24N 104.55W | config.com | DM78rf | SK
Jul 17 '05 #3
Allodoxaphobia wrote:
Or, for The Simple Case(s): .htaccess / redirect [permanent].
Oh, if there's a new address involved, and you want to
redirect requests from the old one, fine.

Would you say a redirect is called for when you're setting up
addresses to begin with? I'll spare you my opinion.
Ask Google.


I ask Google lots - like what your name means - yet he never
asks me once. It's a one-way conversation with that Google.

--
Jock
Jul 17 '05 #4
I want to code my website with encrypt in my URL address .

like famous website such as google.com
Ex.1 http://posting.google.com/post?cmd=post&justr=
Ex.2 http://127.0.0.1:4664/&s=yC1WvvwfhpLmt75SPkYGMFFgmsw
Ex.3 http://www.google.com/grphp?hl=th&tab=ig&q=
Ex.4 http://www.amazon.com/exec/obidos/tg...877977-2963806
Ex.5 http://www.amd.com/us-en/Connectivit...0_2330,00.html
Ex.6 http://www.yahoo.com/_ylh=X3oDMTB2MX...kZXgtaWU-/r/uf

My Example Above act like these
1. not show surname programming file ( such as .php .asp . jsp )
that i think it can be good security-way to protect my server ( my web
server from hacker ) caz hacker don't know what is web server at first
time they see my web site . May be more harder to cracker too.
2. some example don't show path or directory sir.
Any one Can help or suggest me about
1. How to do like this ?
2. How to write code to encrypt my url address on my website ?
3. How to be the advance display URL in these style ? sir

Thank you for advance .
Pratchaya

Allodoxaphobia <bi********@config.com> wrote in message news:<sl************************@shell.config.com> ...
On Sun, 10 Jul 2005 11:28:56 GMT, John Dunlop wrote:
Pratchaya wrote:
http://posting.google.com/post?cmd=post&justr=
http://127.0.0.1:4664/&s=yC1WvvwfhpLmt75SPkYGMFFgmsw
http://www.google.com/grphp?hl=th&tab=ig&q=

it 's not show surname file ( .php .asp .html .others )
Anyone can suggest me ? sir


Without knowing more than what you've said, I'd suggest you
take a look at content negotiation - MultiViews on Apache

http://httpd.apache.org/docs-2.0/con...gotiation.html

or mod_rewrite

http://httpd.apache.org/docs-2.0/mod/mod_rewrite.html


Or, for The Simple Case(s): .htaccess / redirect [permanent].
Ask Google.

Jonesy

Jul 17 '05 #5
Pratchaya wrote:
I want to code my website with encrypt in my URL address .

like famous website such as google.com
Ex.1 http://posting.google.com/post?cmd=post&justr=
Ex.2 http://127.0.0.1:4664/&s=yC1WvvwfhpLmt75SPkYGMFFgmsw
Ex.3 http://www.google.com/grphp?hl=th&tab=ig&q=
Ex.4 http://www.amazon.com/exec/obidos/tg...877977-2963806
Ex.5 http://www.amd.com/us-en/Connectivit...0_2330,00.html
Ex.6 http://www.yahoo.com/_ylh=X3oDMTB2MX...kZXgtaWU-/r/uf

My Example Above act like these
1. not show surname programming file ( such as .php .asp . jsp )
that i think it can be good security-way to protect my server ( my web
server from hacker ) caz hacker don't know what is web server at first
time they see my web site . May be more harder to cracker too.
There are much greater vulnerabilities than these. SQL injection, weak
passwords and a bunch more. Telling someone you're using PHP or ASP, for
instance, isn't that helpful. And if you have other vulnerabilities, they'll
find out anyway.
2. some example don't show path or directory sir.

Look up mod_rewrite and .htaccess.
Any one Can help or suggest me about
1. How to do like this ?
2. How to write code to encrypt my url address on my website ?
3. How to be the advance display URL in these style ? sir

Thank you for advance .
Pratchaya


I wouldn't bother. Unless you really know what you're doing, you're likely to
create more vulnerabilities than you hide.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Jul 17 '05 #6
Thank you very much Sir.
Pratchaya
Jerry Stuckle <js*******@attglobal.net> wrote in message news:<ap********************@comcast.com>...
Pratchaya wrote:
I want to code my website with encrypt in my URL address .

like famous website such as google.com
Ex.1 http://posting.google.com/post?cmd=post&justr=
Ex.2 http://127.0.0.1:4664/&s=yC1WvvwfhpLmt75SPkYGMFFgmsw
Ex.3 http://www.google.com/grphp?hl=th&tab=ig&q=
Ex.4 http://www.amazon.com/exec/obidos/tg...877977-2963806
Ex.5 http://www.amd.com/us-en/Connectivit...0_2330,00.html
Ex.6 http://www.yahoo.com/_ylh=X3oDMTB2MX...kZXgtaWU-/r/uf

My Example Above act like these
1. not show surname programming file ( such as .php .asp . jsp )
that i think it can be good security-way to protect my server ( my web
server from hacker ) caz hacker don't know what is web server at first
time they see my web site . May be more harder to cracker too.


There are much greater vulnerabilities than these. SQL injection, weak
passwords and a bunch more. Telling someone you're using PHP or ASP, for
instance, isn't that helpful. And if you have other vulnerabilities, they'll
find out anyway.
2. some example don't show path or directory sir.


Look up mod_rewrite and .htaccess.

Any one Can help or suggest me about
1. How to do like this ?
2. How to write code to encrypt my url address on my website ?
3. How to be the advance display URL in these style ? sir

Thank you for advance .
Pratchaya


I wouldn't bother. Unless you really know what you're doing, you're likely to
create more vulnerabilities than you hide.

Jul 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: wqhdebian | last post by:
As far as I know,when encrypt or decrypt ,a key must first be got,and the key is first generate by a tool or from SecurityRandom,that means I can not generate the same key with the same input.Does...
0
by: Alan Murrell | last post by:
Hello, I am setting up a Postfix + MySQL + Courier-IMAP system. I am trying to write a shell script which will insert the values into the database. For the password encryption, I wish to use...
1
by: Tommy | last post by:
I want to encrypt the values of my cookies. I found out that I could create a FormsAuthenticationTicket, and use the FormsAuthentication.Encrypt method to encrypt the cookie. However, I do not...
4
by: Gary Townsend (Spatial Mapping Ltd.) | last post by:
Good afternoon, I am building an application that uses ASP .NET, and Blackmoon FTP Server, My plan currently is to automate some user processes one of those processes is to allow them to...
9
by: sweety | last post by:
Dear All, How to encrypt a C data file and make binary file and then have to read a bin file at run time and decrypt the file and have to read the data. Any help to achive this pls. Would be...
8
by: Declan Barry | last post by:
Hi all.. Does anyone have a php script that would allow me to encrypt the contents of a txt file? I have an excel file which has a list of usernames and generated passwords. What I would...
1
by: Y Store Tools | last post by:
I've just started playing with mcrypt for encryption but not sure if I'll need to write my own. Basically I don't need anything advanced for protection but want to mask the data so it's not easily...
2
by: fineman | last post by:
Hi all, I want to get a 64bit(8 bytes) Encrypt result use DES class in the VS2005. Though I encrypt data is 64bit(8 bytes), but DES return encrypt result that always is 128bit(16 bytes), I don't...
4
by: Steph | last post by:
Hi Everybody, Does anybody know whether it is possible to encrypt AUTOMATICALLY in PHP (at the server side) an Adobe PDF document (also stored at the server side) by using a public key coming...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.