我一直在搞弄.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