404:Page Not Found Error
-
Hello!
I am running WP 4.6.1 with WooCommerce 2.6.4, PHP 5.6.22, MySQL 5.6.17
On this standard WordPress page (http://localhost/a10_bop/bop-products/drums)
I use the following shortcode:
[product_category category=”drums” order=”asc” per_page=”2″]The pagination shows at the bottom of the screen, which is good.
(There are 9 products in the drums category but I use per_page=”2″ for testing purposes.)
The generated paginated links are like:
http://localhost/a10_bop/bop-products/drums/page/2 or
http://localhost/a10_bop/bop-products/drums/page/3and so on.
When I click on any of the links I get a 404: Page Not Found error.
My .htaccess is pretty standard:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /a10_bop/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /a10_bop/index.php [L]
</IfModule># END WordPress
For permalinks, I have the following:
Category base:
bop-productsShop product custom base:
/bop-products/%product_cat%If anyone could shed some light on the issue, I’d really appreciate it.
Thanks for your time!
The topic ‘404:Page Not Found Error’ is closed to new replies.