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
1answer
100 views
Wildcard in URL (mod_alias or mod_rewrite)
I need to have URLs such as mydomain.com/whatever, where "whatever" can be any arbitrary string, all call the same php file where it sorts out what to display (or displays a 404). However, I want ...
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
2answers
122 views
Apache redirect question - mod_rewrite or mod_alias
I have a specific need:
example.com/store/{location} must redirect to example.com/store2/{location}
And this needs to redirect, not just a url 'rewrite', so I'm guessing I need mod_alias, right? ...
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
475 views
Apache Rewrite & Alias combined
We have run into an issue where we have an existing Alias, and we would like to add a rewrite rule to catch all variations of case-insensitive spellings, ie:
URL: http://www.example.com/example
...
1
vote
1answer
245 views
How to ensure that Apache always serves a single page via HTTPS?
I would like to redirect all connections from htt_p://www.example.com/abc.html to HTTP_S://www.example.com/abc.html . What mod_alias or mod_rewrite commands would work for this? I've tried:
...
1
vote
1answer
741 views
Apache - Redirect 301 pdf to pdf with spaces ( binary file )
What I want:
To 301 redirect /file_new.pdf to
/file new.pdf ( %20 aka space between
file and new )
I'm aware that:
I can rely on RewriteRule 301 which uses mod_rewrite, using a solution ...
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
2answers
41 views
Redirect to a Rewritten URL
OK, so I'm rewriting some page URLs for a custom PHP cart.
I've got the following rules:
RewriteRule ^category/([0-9]+)/([a-z-]+)$ /store.php?cat=$1 [L]
RewriteRule ^product/([0-9]+)/([a-z-]+)$ ...
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
34 views
Make mod_alias work with mod_rewrite
mod_alias rule:
/water /local/path1/water
Target URLs:
http://www.mysite.com/water/css/style.css
http://www.mysite.com/water/js/java.js
Actual URLs:
...
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
184 views
Apache ErrorDocument absolute path
I'm trying to use the same 404 ErrorDocument for a domain and all its subdomains,
The subdomains all have their own directory in the /var/www/ path
the Apache ErrorDocument directive expects a ...
0
votes
1answer
122 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
66 views
mod_rewrite conflicts with Alias directive
My primary web site uses PHP/Zend Framework, and the .htaccess is the common one:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond ...
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
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
181 views
Fixing mod_rewrite and mod_alias conflict
I have a VirtualHost setup like this :
Alias /somedir /some/other/dir
http://example.com/somedir works fine
However, I need to setup mod_rewrite for /somedir (a CodeIgniter app for which I want ...
0
votes
1answer
186 views
How can I get mod_rewrite and mod_alias to work together?
I have a Windows/Apache/PHP environment set up to imitate a shared hosting account but cannot get mod_alias and mod_rewrite to play nicely with one another. Both are definitely enabled at the server ...
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 ...