我已经为 wordpress 安装了“custom-permalinks”插件
它运行良好,但我对%3F
( ?) 和%3D
( =)有疑问
而不是这个:
?file=kop444.php
作为url(444代表任何其他数字)它使它%3Ffile%3Dkop444.php
我知道.htaccess可以提供帮助 - 但我还没有找到报告正在运行的代码
这是我的 .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