IPv4 နဲ႔ IPv6 ကို နႈိင္းယွဥ္ေဖာ္ၿပထားတာပါ။ အခုဆိုရင္ IPv4 နဲ႔ေပးထားတဲ့ public address ေတြက မၾကာမီ အခ်ိန္တြင္းမွာ ကုန္ေတာ့မွာၿဖစ္ပါတယ္။

What is Internet Protocol?
Internet Protocol is a set of technical
rules that defines how computers communicate
over a network. There are
currently two versions: IP version 4 (IPv4)
and IP version 6 (IPv6).
What is IPv4?
IPv4 was the first version of Internet
Protocol to be widely used, and still
accounts for most of today’s Internet
traffic. There are just over 4 billion IPv4
addresses. While that is a lot of IP addresses,
it is not enough to last forever.
What is IPv6?
IPv6 is a replacement for IPv4. It was
deployed in 1999 and provides far
more IP addresses, which should meet
the need well into the future.
(more…)
Posted by exiter |
1 Comment »
ကၽြန္ေတာ္ဗ်ာ domain က ေန သူ႔ဖိုဒါထဲကို redirect လုပ္ဖို႔ ရြာပတ္ေနတာ ေအာက္က code ေလးကို .htaccess မွာထည့္ေရး လိုက္မွ အဆင္ေျပသြားေတာ့တယ္ဗ်ာ … ဥပမာဗ်ာ — http://www.example.com/ ကေန http://www.example.com/something/ ကို redirect လုပ္ခ်င္တယ္ဆိုရင္
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} example.com
RewriteCond %{REQUEST_URI} !^/something/
RewriteCond %{REQUEST_URI} \..+$
RewriteRule ^(.*)$ something/$1 [L]
RewriteCond %{HTTP_HOST} example.com
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} [^/]$
RewriteRule ^(.*)$ $1/ [L,R=301]
RewriteCond %{HTTP_HOST} example.com
RewriteCond %{REQUEST_URI} !^/something/
RewriteRule ^(.*)$ something/$1/ [L]
Posted by admin |
No Comments »