How can I change the URL for a single page in Wordpress?

房东的猫 提交于 2019-12-06 15:30:19

Try:

RewriteEngine On
RewriteRule ^dealer-info/dealer-informatie/([0-9]+)/(.*)$ /dealer-info/dealer-informatie/?n=$1&d=$2 [L]

You'll want to add that before any wordpress specificf rules in your document root.

If your custom post type were 'product', and/or query_var = "product", WordPress would look for single-product.php to display the single or permalink of the post.

Use single-{post_type}.php

For More Information refer to the below link:

http://codex.wordpress.org/Post_Type_Templates

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!