I want to disable the page where people register to a list, e.g. /lists/xxx/subscribe page. How can I do that?
Thanks!
Yup, .htaccess seems like a good way to do it.use your host's redirect feature
Yup, .htaccess seems like a good way to do it.
Nope, for me neither - What's the best way to achieve this?I tried .htaccess redirect (both manual and via cPanel) but for some reason it doesn't seem to work.
Apparently that's not working with the default URL structure (maybe with clean URLs) ?@nadworks - did you try something like this in .htaccess:
Code:RewriteEngine on RewriteRule ^lists/(.*)/subscribe https://www.google.com/ [R=301,L]
RewriteEngine on
RewriteRule ^index.php/lists/(.*)/subscribe https://www.google.com/ [R=301,L]