1

我有一个 URL http://www.domain.com/wp/application/?productname

我想将其更改为http://www.domain.com/wp/application/productname。如果我这样处理,则显示找不到页面错误。我的应用程序页面中没有使用产品名称,我只想在 SEO 的 URL 中显示产品名称。page 应该是显示应用程序页面的内容。

wp 是我的根文件夹,应用程序是我的页面

请告诉我任何解决方案 htaccess 或任何插件

如何去除?从使用 Htacccess(Wordpress) 的 URL

我使用以下 htaccess 代码。但这不适用于我的情况。否则所有页面都运行良好

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wp/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wp/index.php [L]
</IfModule>
4

1 回答 1

1

您需要设置永久链接结构。

Settings > Permalinks > Check the box 'Post Name', i.e. /%postname%/ 在此处输入图像描述

如果你的 。htaccess文件不可写,请转到 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>
于 2012-10-04T07:49:48.267 回答