如何为我的 Wordpress 网站访问 Google Cloud 上的 .htaccess 文件?
How do I get access to my .htaccess files on Google Cloud for my Wordpress Website?
我将一个网站从一个网络主机迁移到另一个(Google 云),但是我在将我的永久链接从普通链接更改为 post 名称时遇到了问题。我想让网站在 url 上显示页面名称,但我不知道如何访问我在 Google 云上的 .htaccess 文件,看看是否是这个原因
网站页面上的错误是404 Not Found。但如果永久链接是普通链接而不是 %postname%.
,则可以找到这些页面
我正在处理 wordpress 文件。
我试图在 wordpress 仪表板中将永久链接更改为 %postname%,但收到错误消息。我还尝试查看插件是否有问题,但它的永久链接需要在 "plain" 设置上。
访问 SSH:去编辑你的 apache.conf
sudo nano /etc/apache2/apache2.conf
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride ALL <----(edit from none)
Require all granted
</Directory>
然后使用以下命令重新启动 apache2:
sudo service apache2 restart
我也遇到了同样的问题,我雇人搬了个客户端(tenwitch.com) to GCP, and when it is time to adjust some little stuffs. I decided to do it myself only to find out that it is not the traditional cpanel I am used to. What you are going to do is download filezilla (https://filezilla-project.org/download.php)和PuTTY,网上有教程可以看。您将能够立即进行设置。
我将一个网站从一个网络主机迁移到另一个(Google 云),但是我在将我的永久链接从普通链接更改为 post 名称时遇到了问题。我想让网站在 url 上显示页面名称,但我不知道如何访问我在 Google 云上的 .htaccess 文件,看看是否是这个原因
网站页面上的错误是404 Not Found。但如果永久链接是普通链接而不是 %postname%.
,则可以找到这些页面我正在处理 wordpress 文件。
我试图在 wordpress 仪表板中将永久链接更改为 %postname%,但收到错误消息。我还尝试查看插件是否有问题,但它的永久链接需要在 "plain" 设置上。
访问 SSH:去编辑你的 apache.conf
sudo nano /etc/apache2/apache2.conf
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride ALL <----(edit from none)
Require all granted
</Directory>
然后使用以下命令重新启动 apache2:
sudo service apache2 restart
我也遇到了同样的问题,我雇人搬了个客户端(tenwitch.com) to GCP, and when it is time to adjust some little stuffs. I decided to do it myself only to find out that it is not the traditional cpanel I am used to. What you are going to do is download filezilla (https://filezilla-project.org/download.php)和PuTTY,网上有教程可以看。您将能够立即进行设置。