Link rewriting
-
Hello,
I am trying to figure out how to rewrite this type of URL
https://site-name/category/floppy-hair-beach/?tdo_tag=lama-jonny-2
into
https://site-name/category/floppy-hair-beach/tag/lama-jonny-2
I have got this in my .htaccess file but it does not rewrite, what am I doing wrong??
# 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]
RewriteRule ^tag/(.*)$ ?tdo_tag=$1 [L]
</IfModule># END WordPress
Thank you for your help!
P
Viewing 13 replies - 1 through 13 (of 13 total)
Viewing 13 replies - 1 through 13 (of 13 total)
- The topic ‘Link rewriting’ is closed to new replies.