Tagged Questions
4
votes
2answers
2k views
mod_rewrite or mod_alias?
I have a server, it's httpd.conf already has some "RedirectMatch permanent" directives in it.
I'm not that familiar with mod_alias, I've only ever used mod_rewrite.
What's the basic difference? I ...
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
1answer
415 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 ...
0
votes
0answers
22 views
Getting a correct HTTP Location field response header when 301 redirecting
I'm trying to redirect some demo content of a website (http://www.old-domain.it/demo/content) to its new location (http://www.new-location.it) by means of Apache mod_rewrite, with the following code ...
0
votes
1answer
44 views
.htaccess mod_alias and mod_rewrite redirects are ignored
I want to redirect all requests to my index.php script in such a way that everything that goes after http://mysite/ would passed to index.php as url-argument. For example, http://mysite/moo.css should ...
0
votes
1answer
124 views
How to redirect an url with parameters?
I'm at a total loss trying to integrate a mod_rewrite in my existing page. Currently, I am building a new site from scratch, and there i have some nice clean url's such as:
...
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
515 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
2answers
139 views
Redirect from one domain to another, without the user realizing it
I have a bunch of domains on on of my servers. I'd like to be able to redirect some domains to a different domain without the user knowing, so not a 301 redirect.
An example, redirect domain.com to ...
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
89 views
mod_alias subdirectory replacement
I am using RewriteMatch to redirect all traffic from subdir1 to subdir2, while keeping all other parts of the url the same. So for instance,
http://www.mydomain.com/subdir1/
would redirect to
...