Hi,
Is there any way to do this?
Thanks
Can you elaborate?
Hi Drew,
Instead of having:
/blog/2015-05-26-kjh
have
/blog/2015-05-26-kjh/
I did it:
<IfModule mod_rewrite.c> RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !(.*)/$ RewriteRule ^(.*)$ https://domain.com/$1/ [L,R=301] RewriteRule ^blog/([a-zA-Z0-9-/]+)$ /blog/post.php?s=$1 [L] </IfModule>
Can you elaborate?
Hi Drew,
Instead of having:
have
I did it:
Thanks