WordPress的如何删除? 从URL中使用的htaccess(wordpress how t

2019-08-01 04:12发布

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

我想改变它http://www.domain.com/wp/application/productname 。 如果我有像对待这则找不到网页的错误显示。 我没有使用的产品名称在我的应用程序页面,我想只显示产品的名称在URL搜索引擎优化。 和页面应该显示应用程序页面的内容。

WP是我的根文件夹和应用程序是我的网页

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

如何删除? 从使用Htacccess的URL(WordPress的)

我用下面的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>

Answer 1:

你需要设置你的永久链接结构。

进入Settings > Permalinks > Check the box 'Post Name', ie /%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>


文章来源: wordpress how to remove ? from the url using htaccess