我对 WordPress 有一些问题。
在新闻页面 WordPress/
的 URL 末尾添加(例如:)mysite.com/news.html/
。在其他页面上一切正常,(例如,mysite.com/page.html
)。
谁能告诉我如何/
在新闻页面上删除?
.htaccess可能有问题:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
这行可能有问题:prntscr.com/1yqevq
但是如果我更改为ptk-avtom.ru/%postname%
. 没有/
,所有页面都出现 404 错误。