Manual:$wgUsePathInfo

This page is a translated version of the page Manual:$wgUsePathInfo and the translation is 29% complete.
آدرس‌های سرور و مسیرهای فایل: $wgUsePathInfo
Whether to use 'pretty' URLs.
معرفی شده در نسخه:1.2.1
حذف شده در نسخه:هنوز در حال استفاده است
مقادیر مجاز:(boolean)
مقدار پیش‌فرض:(dynamically created)

جزئیات

Whether to use 'pretty' URLs (or Short URL), e.g. index.php/Page_title

These often break when PHP is set up in CGI mode. PATH_INFO may be correct if cgi.fix_pathinfo is set, but then again it may not; lighttpd converts incoming path data to lowercase on systems with case-insensitive filesystems, and there have been reports of problems on Apache as well. To be safe we'll continue to keep it off by default in these instances.

Override this to false if $_SERVER['PATH_INFO'] contains unexpectedly incorrect garbage, or to true if it is really correct. It's highly recommended to set its value in LocalSettings.php to prevent inconsistencies between web requests and scripts run from the command line, where the value may change between them.

  هشدار: The default $wgArticlePath will be set based on this value at runtime, but if you have customized it, having this incorrectly set to true can cause redirect loops when "pretty URLs" are used.

مقدار پیش‌فرض

نسخهٔ مدیاویکی:
1.38.2
Gerrit change 802960
$wgUsePathInfo = null;
MediaWiki versions:
1.2.1 – 1.37
$wgUsePathInfo = ( strpos( PHP_SAPI, 'cgi' ) === false ) &&
	( strpos( PHP_SAPI, 'apache2filter' ) === false ) &&
	( strpos( PHP_SAPI, 'isapi' ) === false );

جستارهای وابسته