因此,在通过 Google Cloud Launcher 部署 Wordpress 并安装网站之后。
例如,如果我创建一个页面:联系人该网站只能通过 website.com/index.php/contacts 访问,不能直接访问 website.com/contacts
我的 .htacces 如下:
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.4.3]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
# END rlrssslReallySimpleSSL
# 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
我的永久链接设置为帖子名称https://www.ccpalt.com.do/sample-post/
我还应该编辑什么?