Tagged Questions
5
votes
1answer
616 views
Using Alias in Apache ONLY if local directory not present?
We're running a reseller web host, and aliasing a particular directory for ALL the sites within. This is all happening through WHM/Cpanel, which could possibly complicate my question.
We want all ...
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
164 views
Apache alias virtual host
I have two applications running in the same server and I would like to have one served from subpath in the url (i.e):
foo.com -> /var/www/foo
foo.com/bar -> /var/www/bar
I'm triyng to do an alias ...
2
votes
1answer
116 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
0answers
200 views
mod_alias Rewrite not working?
I have two servers:
Fedora running Apache/2.2.14 (old server)
CentOs running Apache/2.2.3 (new server)
I've been using this Rewrite rule for quite sometime with absolute success on the old ...
1
vote
2answers
132 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
546 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
250 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
774 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
1answer
481 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 ...
0
votes
1answer
21 views
Apache : How to Use Rewrite Engine Inside Alias
I have this alias configuration:
Alias /test/ "D:/WWW/Test/"
<Directory "D:/WWW/Test/">
Order allow,deny
Allow from all
</Directory>
Then inside D:/WWW/Test/ directory, I put ...
0
votes
1answer
31 views
Apache Redirect Permanent For URL with Data in String (Question Mark)
I am looking for an Apache redirect where the source URL has a question mark in it.
Redirect permanent /course/view.php?id=68 http://exmaple.com/page.php
I've tried escaping the question mark, but ...
0
votes
3answers
37 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
54 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
0answers
31 views
mod_vhost_alias - correct syntax?
This syntax from my httpd.conf seems to work:
<VirtualHost *:80>
UseCanonicalName Off
VirtualDocumentRoot C:/www/%2
ErrorLog /www/Apache22/logs/error.log
</VirtualHost>
<VirtualHost ...
0
votes
1answer
40 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
55 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
227 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
2answers
142 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
599 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
188 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
196 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
3answers
880 views
How can I redirect directory using htaccess including files with spaces in the names
I am dealing with a situation where someone has handed me a bunch of old files on the server which already have a lot of incoming links directly to them (mostly pdf files). I now have the files ...
0
votes
2answers
93 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
...
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 ...