我束手无策,我把一个网站迁移到了另一台服务器上,经过多次设置,我终于在它工作的地方找到了它——有点像。永久链接已损坏,并抛出无法找到站点的错误。
在httpd内部。conf I设置正确的(我认为)设置:
<Directory /opt/wordpress>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
</Directory>
htaccess存在,可由WP写入
# 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>
但我似乎无法让他们工作,所有的搜索都把我留在了这条死胡同。非常感谢您的帮助。
服务器在CentOS上运行Apache,如果这有什么关系,则运行PHP7。