首页 > 解决方案 > 搞砸了.htaccess

问题描述

我一直在搞乱.htaccess,现在我无法修复它..

我的网站是:

https://crowdinvestor.org/

我试图解决我用 html 建立网站和用 wordpress 建立博客的问题,但它没有按计划进行。

HTML 页面:

网上投资:https://crowdinvestor.org/index.html

书籍:https://crowdinvestor.org/books.html

P2P 比较和优惠:https://crowdinvestor.org/offers.html

WordPress 博客:

https://crowdinvestor.org/crowdlending-for-beginners/

wordpress 博客重定向到:

https://crowdinvestor.org/crowdlending-for-beginners.html 这不是我想要的。

# BEGIN WordPress
<IfModule mod_rewrite.c>
  RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]
</IfModule>
# END WordPress

标签: phphtmlwordpress.htaccess

解决方案


推荐阅读