vote up 1 vote down star

I have an installation of YOURLS that redirects generated addresses to a different domain, however the root does not redirect. How can I set a rule that cooperates with the existing rules to achieve this? Here's the .htaccess file as it stands:

# BEGIN ShortURL
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([0-9A-Za-z]+)/?$ yourls-go.php?id=$1 [L]
# END ShortURL

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
</IfModule>

I have a basic understanding of these methods, however I do not know how separate rules affect one another. Thanks in advance for your help.

flag

2 Answers

vote up 0 vote down

Try this:

# BEGIN ShortURL
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([0-9A-Za-z]+)/?$ yourls-go.php?id=$1 [L]

RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^([0-9A-Za-z]*)/?$ yourls-go.php?id=$1 [L]
# END ShortURL

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L]
</IfModule>

link|flag
This solution retains the URL shortening functionality, however attempting to access the root triggers a redirect loop. – Adam Sep 1 at 16:23
vote up 0 vote down

It will probably suffice if you replace the + quantifier (one or more repetitions) of your first rule with the * quantifier (zero or more repetitions).

link|flag
Thanks for the suggestion. Unfortunately, that did not work. – Adam Aug 31 at 21:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.