0

我在 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 个小时了,但什么也想不出来。

提前感谢您的帮助。

4

1 回答 1

0

在 wordpress 中更简单的方法是使用 pluin 请试试这个http://wordpress.org/plugins/wp-page-extension/installation/

或者

http://www.introsites.co.uk/wordpress/html-on-pages-plugin.html

后者已超过 2 年未更新

于 2013-09-12T16:54:31.830 回答