通过.htaccess wordpress升级php

时间:2018-10-08 20:40:45

标签: php wordpress .htaccess

我在speicherzentrum.de上托管了一个WordPress网站。我当前的PHP版本是5.6.29。我想将其更新为7.2。不幸的是,webhoster没有c-panel访问权限来更改PHP版本,而我正试图通过更改.thaccess文件来实现。

当前.haccess包含以下内容:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

<FilesMatch "xmlrpc\.php$">
Satisfy Any
Allow from all
</FilesMatch>

所以我试图将其更改为:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

<FilesMatch "xmlrpc\.php$">
Satisfy Any
Allow from all
</FilesMatch>

AddHandler application/x-httpd-php72 .php .php5 .php4 .php3

但是PHP版本没有更改。 我也很累.../x-httpd-php7 .php... 但是也没有用。有什么建议,如何通过编辑.htaccess文件来更新PHP版本?

0 个答案:

没有答案