我在 wordpress 页面上创建了一个 html 设计。默认情况下,wordpress 页面没有任何扩展名。为了使页面扩展名为 .html ,我在 .htaccess 文件中添加了以下代码,并将该页面的永久链接编辑为。 html,但最终出现 404 错误
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress_com/
#code added by me
RewriteCond %{REQUEST_URI} !^.*\.html$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.html [L,R=301]
#code ends here
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress_com/index.php [L]
</IfModule>
# END WordPress
我已经阅读博客和论坛大约 5 个小时了,但什么也想不出来。
提前感谢您的帮助。