Mobile app version of vmapp.org
Login or Join
Shelton105

: Permalinks only work from home page I am trying to get pretty permalinks working on my wordpress site. From the home page, every product is redirected to the pretty permalink just fine. However:

@Shelton105

Posted in: #Permalinks #Seo #Wordpress

I am trying to get pretty permalinks working on my wordpress site.

From the home page, every product is redirected to the pretty permalink just fine. However:


If I try to directly go to a permalink (say mysite.com/product/pretty-link-1, i.e. not via the home page), I am redirected back to the home page. Is this going to be an issue for SEO indexing purposes?
None of the permalinks show up in a sitemap (since I cannot directly go to those URLs). Is this an SEO issue?


Thanks a lot, I am trying to get this site functional today.
AV

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Shelton105

1 Comments

Sorted by latest first Latest Oldest Best

 

@Berumen354

To answer your questions:


It will be an issue but up to certain extent. Pretty URL are often associated with high quality websites and better for usability and UX. As long as you can reach the product pages from the homepage you won’t be having any issues in terms of indexation. If the pages are accessible they will always be indexed.
This is no an issue, search engines do not rely on the information provided in the sitemap. But here, I can see that there is definitely a problem in the way WordPress is handling the URLs.


You need to check if you are selecting the right permalink option in Settings->Permalinks and make sure you save it before leaving this section.

Then, If you Wordpress is running on an Apache server and is in the root, you need to check if the permalink rules has been written to the .htaccess file.

Here is how the Wordpress rules in the .htaccess file should look like after you saved the settings:

# BEGIN 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>
# END WordPress


I believe this is the answer for your question in this forum related to SEO.

This answer here, however, might help you with your Wordpress permalink related issue. If not consider posting a more specific question in another forum:

When you go from your homepage do you see permalinks? Or ugly URL?

From the products pages and using the main navigation menu, can you go to other products pages?

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme