منتديات جواز سفر
مرحبا بك عزيزى الزائر
اذا كنت عضوا اثبت وجودك باضافة موضوع هادف وجاد
اذا كنت زائر
نرجوا ان تكون فى المرة القادمة عضوا من الاعضاء
وعلى كل حال حاول ان تحصل معنا على جواز سفر الى حياة اكثر سعادة
ونتمنى عودتك
منتديات جواز سفر
مرحبا بك عزيزى الزائر
اذا كنت عضوا اثبت وجودك باضافة موضوع هادف وجاد
اذا كنت زائر
نرجوا ان تكون فى المرة القادمة عضوا من الاعضاء
وعلى كل حال حاول ان تحصل معنا على جواز سفر الى حياة اكثر سعادة
ونتمنى عودتك
منتديات جواز سفر
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.
منتديات جواز سفر

نحن نحاول الحصول على جواز سفر الى قلوب الاخرين
 
الرئيسيةأحدث الصورالتسجيلدخول
العلاج النهائى للبواسير والشرخ الشرجى @@ مرهم طبيعى من تركيبى @@ مجرب @ نتائج ممتازة @ للحصول عليه 01228938172
هنا وعلى هذا المنتدى دراسة عن فك اسرار الحروف المقطعة فى القران الكريم ملك صاحب المنتدى **** من يريد طباعتها ونشرها الاتصال بصاحب المنتدى
المواضيع الأخيرة
» فصل الخطاب فى علاج القشرة +تساقط الشعر + انبات الشعر
Seo Friendly Links with mod_rewrite Emptyالأربعاء يناير 30, 2013 10:13 am من طرف Admin

» فصل الخطاب فى علاج خشونة الركبة
Seo Friendly Links with mod_rewrite Emptyالأربعاء يناير 30, 2013 10:11 am من طرف Admin

» تليفون يعمل فى الماء
Seo Friendly Links with mod_rewrite Emptyالأربعاء يناير 09, 2013 10:40 am من طرف Admin

» فصل الخطاب فى علاج القشرة +تساقط الشعر + انبات الشعر
Seo Friendly Links with mod_rewrite Emptyالأربعاء يناير 09, 2013 10:27 am من طرف Admin

» انيوركس - احدث جهاز لعلاج البواسير بدون عمليات او جراحة
Seo Friendly Links with mod_rewrite Emptyالأحد يوليو 29, 2012 3:27 am من طرف logeee

» علاج البواسير|البواسير الداخلية|العلاج من البواسير|علاج البواسير بالتبريد
Seo Friendly Links with mod_rewrite Emptyالسبت يوليو 14, 2012 5:28 pm من طرف logeee

» علاج البواسير بدون جراحة|البواسير الداخلية|العلاج من البواسير|علاج البواسير بالتبريد
Seo Friendly Links with mod_rewrite Emptyالسبت يوليو 14, 2012 5:24 pm من طرف logeee

» البواسير|علاج البواسير|البواسير الداخلية|العلاج من البواسير|علاج البواسير بالتبريد
Seo Friendly Links with mod_rewrite Emptyالسبت يوليو 07, 2012 8:01 am من طرف logeee

» البواسير|علاج البواسير|البواسير الداخلية|العلاج من البواسير|علاج البواسير بالتبريد
Seo Friendly Links with mod_rewrite Emptyالسبت يوليو 07, 2012 8:00 am من طرف logeee

أختر لغة المنتدى من هنا
ازرار التصفُّح
 البوابة
 الرئيسية
 قائمة الاعضاء
 البيانات الشخصية
 س .و .ج
 بحـث

web hit counter

 

 Seo Friendly Links with mod_rewrite

اذهب الى الأسفل 
كاتب الموضوعرسالة
Admin
Admin



عدد المساهمات : 368
تاريخ التسجيل : 24/12/2010

Seo Friendly Links with mod_rewrite Empty
مُساهمةموضوع: Seo Friendly Links with mod_rewrite   Seo Friendly Links with mod_rewrite Emptyالجمعة مايو 20, 2011 2:08 pm


Apache’s mod_rewrite module solves several typical Search Engine Optimization (SEO) problems. It is a module which provides a powerful way to do sophisticated url manipulations. Not only can mod rewrite be used to avoid duplicate content, redirect moved urls or non existing inbound links, and create search engine friendly urls. It can also be used for to gain higher PageRank and search engines rankings, get your web site indexed by the search engines, and receiving more visitors. Here are some the most popular url manipulations.
Avoid duplicate content
RewriteEngine On
# Redirect non-www to www.
RewriteCond %{HTTP_HOST} !^www.example.com$ [NC]
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
# Redirect direct requests for "<anything>/index.html" to "<anything>/"
RewriteRule ^(([^/]+/)*)index\.html http://www.example.com/$1 [R=301,L]
Redirect relocated URLs
RewriteEngine On
# Redirect relocated old urls to the new urls
RewriteRule ^oldpage\.html$ http://www.example.com/newpage.html [R=301,L]
RewriteRule ^directory/oldpage\.html$ http://www.example.com/directory/newpage.html [R=301,
# Redirect relocated directories to the new directories
RewriteRule ^olddir/(.*) http://www.example.com/newdir/$1 [R=301,L]
Redirect non existing incoming links
RewriteEngine On

#+---------------------------------
#+ - BEGIN: URL fixup redirect routine
#+---------------------------------

# Get the requested URI, query string and hostname.
RewriteCond %{REQUEST_URI} ^(/[^?]*)([?].*)?$
RewriteRule . - [E=myUri:%1,E=myQuery:%2]

# Replace hmtl, htlm, and thml file extensions with html extension.
RewriteCond %{ENV:myUri} ^(.*)[.,](hmtl|htlm|thml)$ [NC]
RewriteRule . - [E=myRedirect:yes,E=myUri:%1.html]

# Replace comma(s) or multiple filetype delimiter periods in the url
# with a single period.
RewriteCond %{ENV:myUri} ^(.*)([,.]{2,}|,)((s?html?|php[1-9]?|aspx?|pdf|xls).*)$ [NC]
RewriteRule . - [E=myRedirect:yes,E=myUri:%1.%3]

# Remove invalid trailing characters
RewriteCond %{ENV:myUri} ^([/0-9a-z._\-]*)[^/0-9a-z._\-] [NC]
RewriteRule . - [E=myRedirect:yes,E=myUri:%1]

# Remove trailing punctutation
RewriteCond %{ENV:myUri} ^(.*)[._\-]+$
RewriteRule . - [E=myRedirect:yes,E=myUri:%1]

# Do the external 301 redirect only if needed and the resource exists
# at the corrected URI.
RewriteCond %{ENV:myRedirect} ^yes$ [NC]
RewriteCond %{DOCUMENT_ROOT}%{ENV:myUri} -f [OR]
RewriteCond %{DOCUMENT_ROOT}%{ENV:myUri} -d
RewriteRule . http://www.example.com%{ENV:myUri}%{ENV:myQuery} [R=301,L]

#+---------------------------------
#+ - END: URL fixup redirect routine
#+---------------------------------
SEO-friendly URLs
For example, your urls look like this: http://www.example.com/widgets.php?cat=blue&page=1
Obviously, you want to transform it into something that look like this: http://www.example.com/widgets/blue/page1.php
RewriteEngine On
RewriteRule ^widgets/(.*)/page(.*)\.php /widgets.php?cat=$1&page=$2 [L]
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://p-port.forumegypt.net
 
Seo Friendly Links with mod_rewrite
الرجوع الى أعلى الصفحة 
صفحة 1 من اصل 1

صلاحيات هذا المنتدى:لاتستطيع الرد على المواضيع في هذا المنتدى
منتديات جواز سفر  :: English Forum-
انتقل الى: