PDA

View Full Version : How to remove URL On A website..?



gunjanjain
09-28-2017, 10:30 PM
Hello friends,

How to remove URL On A website..?

NP02
09-28-2017, 11:40 PM
if it is your website you can edit the code and remove it manually. And if you dont have knowledge about Developing you can take help of the developer who developed your site.

crackersguru
09-28-2017, 11:53 PM
Go to your Google Search Console (formerly called Google Webmaster Tools) and select your property and then Google Index and then Removal URLs, or just click here and then select your property. From here you will be able to Temporarily hide URLs. Just click on Temporarily hide and then enter your URL.

sulbha
09-29-2017, 12:21 AM
Use the robots meta-element with NOINDEX...


Add the meta-element robots to the source code of the page which is not supposed to appear in the index and set the value to NOINDEX.

By adding the following to the source code of a page, it will be removed from the index:

<meta name="robots" content="noindex">
You have to add the meta-element in the <head> area of the specific page:

If the page already has the robots meta-element with the value INDEX, you can simply replace it with NOINDEX.

Done. Now you just have to wait until the desired URL is removed from the Google index.

simon56
10-04-2017, 11:37 PM
To remove bad or broken link of your website you can use google search engine console.

mammaaskitchen
10-09-2017, 10:40 PM
Try this:
RewriteEngine on
RewriteBase /info/

#exclude /info/a-webpage/ by!^/info/.+/.*
RewriteCond %{REQUEST_URI}!^/info/.+/.*

#include only ^/info/(.+)\.html$
RewriteRule ^/info/([^/]+)\.html$ /$1/ [R=301,L]