I’m trying to get my .htaccess to redirect links to open our app. For example, I want example.com/invite/invitecode to go to app_name://invitecode
While the following validates in a htaccess tester, it doesn’t seem to work in production. Any suggestions?
RewriteEngine On
RewriteRule ^invite/(.*)$/? quill://$1/ [L,R=301]
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
According to this stackoverflow post, you can use RedirectMatch to do that:
Also, the
$
should be at the end of the RegEx pattern.