简体   繁体   中英

Redirect pagination to base Url in website Wordpress

How can I display the URLs on my site in a cleaner fashion, example:

Change
example.com/item/page-1.html
to
example.com/item/

If you want to update permalinks to not include index.php then add a .htaccess file to the wordpress folder and add the following content to it:

# 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

Then go to the Wordpress Dashboard > Settings > Permalinks > and change it to "post name" and save changes.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM