Jump to content

.htaccess trailing slash issue


fubowl

Recommended Posts

I'm trying to add a slash to urls which are typed in without the trailing slash. Of which I'm not the most familiar with .htaccess, but I've been researching for awhile and nothing has merged with my current .htaccess files.

I've also found a strange anomaly with one piece of code I've added. Here is my regular .htaccess code before I've tried to add anything.

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L]

I found this: RewriteRule (.*) http://lthq.local/$1/ [L,R=301]

And added it here:

Options +FollowSymLinks
RewriteEngine on
[b]RewriteRule (.*) http://lthq.local/$1/ [L,R=301][/b]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L]

The anomaly I receive with this is when you type in:
[i]http://test.local/login/foo/bar[/i] you are redirected to [i]http://test.local/login/foo/bar////////////////////[/i]
Notice the 20 slashes which are added.

So although I got my slash, I got 19 more than was necessary.

Any help would be greatly appreciated.
Thanks.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.