trailing slash doesn't preserve root
« on: March 20, 2018, 01:31:28 AM »
I have a blog website which generates articles from database.
Every url in my site is like this:
Code: [Select]
<a href src="/xxx"> having a trailing slash (/) at the start, to determine the root.
I have urls like:
Code: [Select]
/post/article-titlerewritten from
Code: [Select]
post.php?id=article-titlewith .htaccess
and so we have:

the actual link of a file is this: /contact.php
the generator, crawls /contact.php, /post/contact.php, /xxx/contact.php and so on.
ATM I have to exclude those links from getting indexed.