I wonder if you can help me, please?
I have the following problem with a permalink.
I have tried to change the permalink for the following link from / to /
by going into page on the Dashboard and editing it there. Each time that I save it, WP changes it back to what-are-impact-goals-2. I can change it to other things (eg impact-goals) but not to what-are-impact-goals.
I searched for help and one recommendation is to empty trash. I have no pages in trash.
Other is to check Media. Again, no similar link.
/ takes me to my homepage.
I presume that WP has what-are-impact-goals recorded somewhere. Any ideas?
I wonder if you can help me, please?
I have the following problem with a permalink.
I have tried to change the permalink for the following link from https://impactgoals/what-are-impact-goals-2/ to https://impactgoals/what-are-impact-goals/
by going into page on the Dashboard and editing it there. Each time that I save it, WP changes it back to what-are-impact-goals-2. I can change it to other things (eg impact-goals) but not to what-are-impact-goals.
I searched for help and one recommendation is to empty trash. I have no pages in trash.
Other is to check Media. Again, no similar link.
https://impactgoals/what-are-impact-goals/ takes me to my homepage.
I presume that WP has what-are-impact-goals recorded somewhere. Any ideas?
Share Improve this question asked Jun 29, 2019 at 8:22 BerniBerni 132 bronze badges 8 | Show 3 more comments1 Answer
Reset to default 0May be the main reason of this issue is that the WordPress finds that this URLs already assign to any post which exists in database. so You have to check permalinks of the every pages/post or attachments are not using that permalink. It could be in publish, drafts or trash as well.
or you can find in wp_posts table in database from phpmyadmin. you can search using :
wp_posts > search tab > "post_name" operator LIKE%..% value "what-are-impact-goals"
or you can fire SQL query in SQL tab:
SELECT * FROM `wp_posts` WHERE `post_name` LIKE '%what-are-impact-goals%'
Check there is permalink already exists or not. then after you can take action.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745359776a4624304.html
what-are-impact-goals
? Click Quick edit of the front page on your Pages list and change the slug if necessary. – Antti Koskinen Commented Jun 29, 2019 at 14:31