的内容/index.php
具体如下:
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(\'WP_USE_THEMES\', true);
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . \'/wp-blog-header.php\' );
如果我对此文件进行了任何更改,然后进行Wordpress更新,是否会替换此文件的内容?我无法在网上找到此文件的任何参考,只有Wordpress\'
/wp-includes
和
/wp-admin
文件夹。
我没有访问php的权限。ini文件,并希望通过添加以下代码更改会话cookie生存期设置:
$seconds = 31557600; //1 year
ini_set(\'session.gc_maxlifetime\', $seconds);
ini_set(\'session.cookie_lifetime\', $seconds);
但不想将其添加到可能在几个月内被覆盖的文件中。