WordPress Permalinks Does Not Work in xampp Setup WordPress permalinks لا يعمل في الاعداد xampp
xampp provides a convenient way to quickly and easily install and setup a web server that works without much configuration. xampp يوفر وسيلة مريحه لبسرعة وسهولة اعداد وتركيب وخدمة ويب انه يعمل دون الكثير من التكوين. However, permalinks feature won’t work with the default installation of xampp, even though you can properly customize the permalinks structure to create the .htaccess file. ومع ذلك ، لن permalinks ميزة العمل مع تنصيب xampp الافتراضي ، حتى لو كنت على الوجه الصحيح يمكن تخصيص permalinks لإنشاء الهيكل. Htaccess الملف.
When you click on any permalinks, your WordPress blog will return a 404 error instead, saying the post not found. عند النقر على أي permalinks ، بلوق WordPress الخاص بك سوف يعود 404 الف خطأ وبدلا من ذلك ، قائلا : لم يتم العثور على وظيفة. Instead, you can only access your blog posts via default permalinks structure, which is in the form of http://www.mydigitallife.info/?p=123. وبدلا من ذلك ، يمكنك فقط دخول حسابك بلوق وظائف عن طريق تقصير permalinks الهيكل ، الذي هو في شكل http://www.mydigitallife.info/؟p=123.
This is because in xampp, mod_rewrite is not enable by default. وذلك لأن في xampp ، mod_rewrite لا يمكن افتراضيا. Beside, AllowOverride directive in Apache configuration file is also set to None by default, causing Apache web server to ignore any .htaccess file, which used to rewrite the permalinks to the post’s actual url. الى جانب ، allowoverride التوجيه اباتشي في ملف التهيءه ايضا مجموعة لا شيء افتراضي ، مما ادى الى خادم الويب اباتشي على تجاهل ايه. Htaccess الملف ، والتي تستخدم لاعادة كتابة permalinks الى ما بعد الفعليه للموقع.
To use permalinks in WordPress that installed on xampp-based server, edit the httpd.conf that locates in C:\Program Files\xampp\apache\conf directory (folder). استخدام permalinks في ان WordPress المثبتة على اساس خادم xampp ، وتحرير httpd.conf ان يحدد مكانا في ج : \ ملفات البرنامج \ xampp \ اباتشي \ م دليل (مجلد). Open httpd.conf in any text editor, search for “mod_rewrite”. Httpd.conf مفتوحة في اي محرر نصوص ، والبحث عن "mod_rewrite". You should come to a line like this: يجب عليك ان التوصل الى مثل هذا الخط :
#LoadModule rewrite_module modules/mod_rewrite.so # Loadmodule وحدات rewrite_module / mod_rewrite.so
Remove the hash sign (#) from the line. ازالة التشويش علامة (#) من الخط. The # indicates the line is not in effect. # تدل على الخط ليست في الواقع. The changed line should looks like this: تغير خط ينبغي أن ينظر إلى مثل هذه :
LoadModule rewrite_module modules/mod_rewrite.so وحدات loadmodule rewrite_module / mod_rewrite.so
After that, search for “AllowOverride”. وبعد ذلك ، البحث عن "allowoverride". You will come to a line like this: انت ستصل الى مثل هذا الخط :
AllowOverride None لا شيء allowoverride
If the above line is contained within default directory (mean the directory declaration is just واذا كان الوارد اعلاه هو داخل الخط الافتراضي الدليل (يعني الدليل هو مجرد اعلان
AllowOverride All جميع allowoverride
Restart the Apache. استئناف اباتشي. Permalinks is working after restart. Permalinks تعمل بعد بدء التشغيل.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. هام : هذا هو الاله الذي ترجم صفحة مقدمة "كما هى" دون ضمان. Machine translation may be difficult to understand. الترجمة الاليه قد يكون من الصعب ان نفهم. Please refer to يرجى الرجوع الى original English article المادة الاصليه English whenever possible. كلما كان ذلك ممكنا.
Share and contribute or get technical support and help at والمساهمة في حصة او الحصول على الدعم التقني والمساعدة فى My Digital Life Forums بلدي الرقميه الحياة المنتديات .
Related Articles مقالات ذات صلة
- Easily Set Up Web Server with XAMPP من السهل إنشاء خادم الويب مع xampp
- Enable MySQL InnoDB Storage Engine Support in XAMPP Installation تمكين الخلية innodb تخزين محرك في دعم تركيب xampp
- Download WordPress 2.3 Release Candidate 1 (RC1) with Tags Support تحميل WordPress 2،3 اطلاق سراح المرشح 1 (rc1) مع دعم العلامات
- Paginating or Split WordPress Post or Page with NextPage in WordPress Not Working ترقيم صفحات WordPress او تقسيم او ما بعد في صفحة nextpage WordPress لا تعمل
- Download Previous or Old Version of WordPress تحميل النسخه القديمة السابقة أو من WordPress
- Tag Managing Thing Plugin for WordPress 2.3 or Above ان البطاقه البرنامج المساعد لادارة الشيء WordPress 2،3 أو أعلى
- Integrate WordPress including Comments with bbPress Forum using bbSync WordPress دمج بما في ذلك التعليقات مع bbpress المنتدى باستخدام bbsync
- How to Move WordPress Blog to New Domain or Location كيفية التحرك لبلوق WordPress نطاق جديد او موقع
- WordPress 2.1.1 Critical Security Alert - Download Upgrade to 2.1.2 WordPress 2.1.1 الامنية الحرجه انذار -- تحميل الترقيه الى 2.1.2
- Must Have WordPress Plugins يجب ان يكون ووردبريس ملحقات

































August 15th, 2008 04:59 اب / اغسطس 15th ، 2008 04:59
Thanks A LOT! شكرا جزيلا! Works great! وتعمل كبرى!