Tagged Questions

2
votes
4answers
3k views

How to use htaccess to redirect all but one subdirectory

It's been a while since I've messed with .htaccess and I can't seem to get this quite right. I have a site, say example.com, where I want example.com/* to redirect to example.com/collector.html except ...
1
vote
0answers
16 views

All the slashes getting removed from my urls

I was goofing with the .htaccess file doing a redirect from domain.com to www.domain.com. I saw on a forum that using mod_alias would be a good idea. Being the adventurous sort, I put a permanent ...
1
vote
1answer
47 views

Why htaccess redirect being overruled?

I've got: Redirect 301 /blog/?p=1 http://www.new-site.com/blog/2000/10/myslug/ which works fine, unless followed by: RedirectMatch 301 ^/blog(/)?(.*)$ http://www.new-site.com/blog/$2 I've tried ...
1
vote
1answer
413 views

Using mod_rewrite and mod_alias (redirect 301) together in .htaccess?

I have a site with a set of old .html and .php pages that have been put into a CMS. Currently in the .htaccess file there are about 30 mod_alias redirects in the following form: redirect 301 ...
1
vote
1answer
468 views

Redirect 301 Transfer to New Domain Output URL is Ugly

I am moving my blog to a new domain. I am trying to do this through .htaccess. While the redirect is okay - the output URL is 'ugly' example in old domain .htaccess file: redirect 301 ...
1
vote
5answers
4k views

How do I use .htaccess to redirect to a URL containing HTTP_HOST?

Problem I need to redirect some short convenience URLs to longer actual URLs. The site in question uses a set of subdomains to identify a set of development or live versions. I would like the URL to ...
0
votes
3answers
29 views

Simple mod_rewrite RewriteRule for messy legacy url's

Launching a new website for a new client. Their old site has about 50 products and unfortunately, the old product names do not match up to the new URL pattern Old URL Examples: ...
0
votes
1answer
49 views

Redirect references to root to current alias instead

I'm using a local install of Apache 2.2.11 and have set up an alias to a folder above the document root (alias localhost/fp/ => /www/dirs/friendpages). I would like to be able to redirect requests ...
0
votes
1answer
201 views

Redirecting http to https for a directory, via .htaccess, using mod_alias only

I have the common problem of wanting to redirect requests for a certain restricted access directory from http to https, so that users' login credentials are sent in a secure way. However, I do not ...
0
votes
1answer
169 views

.htaccess 301 Redirects using RedirecMatch or RewriteRule

I am attempting to create some 301 redirects using .htaccess in order to fix some Crawler Errors that Google is encountering. Google is using old versions of some of my URLs, which is causing errors ...
0
votes
1answer
513 views

.htaccess alias URL

I am trying to create a redirect of a temp URL using Redirect Permanent /dir/subdir http://www.domain.com/other_dir/htmlfile.html Note that "dir" exists in the file structure but "subdir" does not. ...
0
votes
1answer
578 views

Simple 301 redirect in .htaccess with query string does not work with Redirect directive

I am trying to redirect a single URL in a .htaccess file with Redirect: Redirect 301 /index2.php?option=com_rss&feed=RSS2.0&no_html=1 /something/somethingelse/ I have a bunch of other ...
0
votes
1answer
24 views

.htaccess why problem when using ? in Redirect

i have this line Redirect /?page=cms_page&id=12 http://www.domain.dk/case when i type ?page=...... its not will work if i only use page=..... its will work fine but not the user type ...
0
votes
2answers
150 views

Issue with redirection of a folder with mod_alias

Another question following on from this thread. The only remaining item that I can't solve is that there is a listing for an now non-existent folder '/team/', but if I add this into my .htaccess ...
0
votes
1answer
100 views

Impossible to mod_rewrite based on existence of file in mod_aliased directory?

I'm trying to do something like the following in my .htaccess file: Alias /assets /location/of/files RewriteCond %{REQUEST_URI} ^/assets/[0-9]+.jpg$ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ...