How to disable registration form?

Lakjin

Active Member
I want to disable the page where people register to a list, e.g. /lists/xxx/subscribe page. How can I do that?

Thanks!
 
I want to disable the page where people register to a list, e.g. /lists/xxx/subscribe page. How can I do that?

Thanks!

you could delete or replace the form for that list with a different page (content)
or
use your host's redirect feature
 
I tried .htaccess redirect (both manual and via cPanel) but for some reason it doesn't seem to work.
 
@nadworks - did you try something like this in .htaccess:
Code:
RewriteEngine on
RewriteRule ^lists/(.*)/subscribe   https://www.google.com/ [R=301,L]
 
@nadworks - did you try something like this in .htaccess:
Code:
RewriteEngine on
RewriteRule ^lists/(.*)/subscribe   https://www.google.com/ [R=301,L]
Apparently that's not working with the default URL structure (maybe with clean URLs) ?

Anyway this does the trick with default URL structure:


Code:
RewriteEngine on
RewriteRule ^index.php/lists/(.*)/subscribe   https://www.google.com/ [R=301,L]
 
Back
Top