我最近将我的网站切换到了 Wordpress。我的旧文件是 www.example.com/about.php,现在是 www.example.com/about/。我需要将来自 .php 扩展名的传入链接重定向到我所有页面的 / 最好使用 .htaccess。
我有的:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php [NC,L]
我的 .htaccess 文件中有什么:
# 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
我想我也不知道将它放在我的 .htaccess 文件中的什么位置。谢谢!