So we had a customer who was working with Total CMS and Blog and had a URL similar to this:
http://mysite.com/blog/post/pretty-urls
and they wanted to get rid of the newsletter
part of the URL. Here is a simple way to do this.
/blog/index.php
/blog/post.php
https://mysite.com/blog/
### Pretty URL rules to paste into your .htaccess file
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule blog/(\S+) /blog/post.php?permalink=$1
© 2025 Weavers Space | Terms of Service | Privacy Policy