URL rewriting module for the Apache web server. It is commonly used for so-called "pretty" URLs, but also provides the power and flexibility to perform various request handling tasks beyond simple substitutions.
74
votes
6answers
14k views
Hidden features of mod_rewrite
There seem to be a decent number of mod_rewrite threads floating around lately with a bit of confusion over how certain aspects of it work. As a result I've compiled a few notes on common ...
52
votes
7answers
76k views
How does RewriteBase work in .htaccess
I have seen this in a few .htaccess examples
RewriteBase /
It appears to be somewhat similar in functionality to the <base href=""> of HTML.
I believe it may automatically prepend its value ...
45
votes
6answers
9k views
Tips for debugging .htaccess rewrite rules
Many posters have problems debugging their RewriteRule and RewriteCond statements within their .htaccess files. Most of these are using a shared hosting service and therefore don't have access to the ...
41
votes
10answers
79k views
.htaccess rewrite to redirect root URL to subdirectory
Trying to get
www.example.com
to go directly to
www.example.com/store
I have tried multiple bits of code and none work. Please help!
What I've tried:
Options +FollowSymlinks
RewriteEngine on
...
37
votes
8answers
108k views
How to enable mod_rewrite for Apache 2.2
I've got fresh install of Apache 2.2 on my Vista machine, everything works fine, except mod rewrite.
I've uncommented
LoadModule rewrite_module modules/mod_rewrite.s
but none of my rewrite rules ...
37
votes
13answers
29k views
How to remove “index.php” in codeigniter's path
How do I remove the "index.php" sticking out in every path in codeigniter somewhere in the center?
I want clean non index.php-fied URLs?
33
votes
6answers
20k views
Do you have to restart apache to make re-write rules in the .htaccess take effect?
I have pushed my .htaccess files to the production severs, but they don't work. Would a restart be the next step, or should I check something else.
24
votes
9answers
26k views
How do I ignore a directory in mod_rewrite?
I'm trying to have the modrewrite rules skip the directory vip. I've tried a number of things as you can see below, but to no avail.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
...
22
votes
2answers
959 views
.htaccess or symbolic link (symlink)
I have a website with multiple folders and I was trying to fix them in my .htaccess. After a little while, I have a big .htaccess with rules that conflicts.
Now every time I want to add a folder I ...
21
votes
1answer
18k views
mod_rewrite rule to redirect all requests except for one specific path
I'm trying to redirect all requests to my domain to another domain using mod_rewrite in an Apache 2.2 VirtualHost declaration. There is one exception to this -- I'd like all requests to the /audio ...
20
votes
2answers
32k views
.htaccess mod_rewrite - how to exclude directory from rewrite rule
I have 8 lines of rewrite rules in my .htaccess file. I need to exclude two physical directories on my server from these rules, so they can become accessible. For now all requests are sent to ...
19
votes
6answers
3k views
mod_rewrite GUI?
Anyone have a graphical tool for developing mod_rewrite rules.
Ideally it would display a pipeline of rewrites and then when given an instance of a uri would show the transforms as the get applied.
...
17
votes
10answers
19k views
mod_rewrite equivalent for IIS 7.0 [closed]
Is there a mod_rewrite equivalent for IIS 7.0 that's
a) more or less complete
b) suitable for a production environment, i.e. battle-tested/dependable/secure
Do you have an experience-based ...
17
votes
3answers
13k views
Apache rewrite based on subdomain [closed]
Im trying to redirect requests for a wildcard domain to a sub-directory.
ie. something.blah.domain.com --> blah.domain.com/something
I dont know how to get the subdomain name to use in the rewrite ...
17
votes
1answer
125 views
.htaccess page and lang error
i try to look on stackoverflow but i can't find my answer.
so i need to find out which domain which sub-domain the user is and which page is loading.
eg: en.domain.com/contactus
this should ...
16
votes
3answers
10k views
.htaccess - how to force “www.” in a generic way?
This will change domain.com to www.domain.com:
# Force the "www."
RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]
How do I replace the ...
15
votes
2answers
599 views
.htaccess mod_rewrite performance
i searched a lot on SOF about .htaccess and mod_rewrite and i want to performance wise which one is faster:
RewriteRule ^([a-z0-9]+)/?$ index.php?id=$1 [NC,L]
RewriteRule ^(.*)/?$ index.php?id=$1 ...
15
votes
2answers
415 views
rewrite urls for product name
i want to rewrite a rule for my products.
i want to use the id and name in the url separated by a dash like this:
123-name means product id = 123 and name = name
so in my php i can get the ...
14
votes
2answers
4k views
When setting environment variables in Apache RewriteRule directives, what causes the variable name to be prefixed with “REDIRECT_”?
I am trying to set Apache environment variables (for use in PHP) with the [E=VAR:VAL] flag on RewriteRule rules in an .htaccess file.
I have already discovered the variables are accessed in PHP as ...
14
votes
2answers
1k views
Why is it a security risk to allow encoded slashes in a URI?
I have a situation where I want encoded slashes in a URI (%2F), but my .htaccess rules are ignored when I make the request, sending me instead to a 404 page. I quickly found the Apache directive ...
13
votes
8answers
17k views
Zend Framework on nginx
The Zend Framework based site I have been working on is now being migrated to its production server. This server turns out to be nginx (surprise!). Naturally the site does not work correctly as it was ...
13
votes
14answers
31k views
.htaccess not working (mod_rewrite)
I have not having any luck getting my .htaccess with mod_rewrite working. Basically all I am trying to do is remove 'www' from "http://www.example.com" and "https://www.example.com".
If there is ...
13
votes
4answers
14k views
How to encode special characters using mod_rewrite & Apache?
I would like to have pretty URLs for my tagging system along with all the special characters: +, &, #, %, and =. Is there a way to do this with mod_rewrite without having to double encode the ...
12
votes
4answers
411 views
Can I ban or restrict a country based on IP?
I get 6-10 sign ups from places like Nigeria and Ghana in Africa. I'm currently capturing IPs so is it possible to restrict a range of IPs from a specific country?
If I can retrict them does it ...
12
votes
1answer
167 views
.htaccess newbie issue using mod_rewrite
I need to create SEO-friendly urls for my site. I found out I can use .htaccess to rewrite them. So I tried this:
> http://www.domain.com/page/1/mypage
> http://www.domain.com/user/2/myuser
...
12
votes
2answers
143 views
.htaccess and params
i digg on the internet about .htaccess and rewrite rules i need to do with my site.
i saw something i dont understand and want to know what it means
i am wondering what is the difference between the ...
12
votes
2answers
377 views
apache rewrite rules issue for specific pages
I have problem with my .htaccess redirections. When I type:
http://www.domain.com/contact
it goes to the index.php and not the contact.php
here's my .htaccess:
Redirect 301 /clients ...
12
votes
5answers
1k views
Apache Mod-Rewrite Primers? [closed]
I am wondering what primers/guides/tutorials/etc. are out there for learning to rewrite URLs using Apache/.htaccess? Where is a good place to start?
My primary interest is learning how to point ...
12
votes
1answer
3k views
Block by useragent or empty referer
A stranger bot (GbPlugin) is codifying the urls of the images and causing error 404.
I tried to block the bot without success with this in the bottom of my .htaccess, but it didn't work.
Options ...
12
votes
4answers
12k views
.htaccess: RewriteEngine not allowed here
I uploaded the .htaccess to the server and received an Error 500 (Internal Server Error).
And in the error log I had the following error:
.../.htaccess: RewriteEngine not allowed here
But ...
12
votes
5answers
457 views
How to blogger/wordpress/tumlr allow users to mask url
I am creating a saas application. Users have their own url like user.mysaasapp.com
To allow user to have own url, I use mod rewrite. Something like http://mysaasapp.com/?user=user to ...
11
votes
1answer
5k views
mod_rewrite: what does this RewriteRule do?
Given these conditions (I know what they mean/do):
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
What does the first rule do? ...
11
votes
2answers
112 views
Issue with mobile website
I have a mobile version of my site that I have an issue with. My main site is (let's say) domain.com and my mobile site is (let's say) m.dom.com
I have common js/css and images I use for both and I ...
11
votes
2answers
7k views
RewriteRule checking file in rewriten file path exists
How can you use ModRewrite to check if a cache file exists, and if it does, rewrite to the cache file and otherwise rewrite to a dynamic file.
For example I have the following folder structure:
...
11
votes
2answers
125 views
.htaccess with products (string)
i use .htaccess and i have a rule that allow me to dynamically look for product in my database.
so someone can click on a link like this one:
www.domain.com/product/modular-plastic-lunch-set.html
...
11
votes
1answer
164 views
.htaccess for PDF URL
I have a structure called /pdf/ where generated PDFs are stored. I am trying to use .htaccess to route visitors to the PDF folder.
I have this rule in my .htaccess file:
RewriteEngine On
...
11
votes
4answers
2k views
trouble with utf-8 chars & apache2 rewrite rules
I see the post http://stackoverflow.com/questions/2565864/validating-utf-8-in-htaccess-rewrite-rule and I think that is great, but a more fundamental problem I am having first:
I needed to expand ...
10
votes
8answers
1k views
What happens first? .htaccess or php code?
If I use mod_rewrite to control all my 301 redirects, does this happen before my page is served? so if I also have a bunch of redirect rules in a php script that runs on my page, will the .htaccess ...
10
votes
4answers
7k views
Redirect to Apache built-in 404 page with mod_rewrite?
Is there a way to actively serve Apache's default, built-in 404 page for a number of URLs using mod_rewrite? Not a custom error document, but a rule like
RewriteCond %{REQUEST_URI} ^/dirname/pagename
...
10
votes
1answer
2k views
.htaccess regular expression difference/pros/cons
I have a bunch of rules in my .htaccess (sub-domains, folders, users specific folders etc...)
and I am using now this regular expression:
([a-z0-9A-Z])
I was looking for a specific rule and i found ...
10
votes
2answers
840 views
Change the DirectoryIndex based on a domain/sub-domain in .htaccess
I have a shared hosting with one domain and one sub-domain (for mobile and clients). Each domain and sub-domains has different default index pages. The hosting company told me to put everything in my ...
10
votes
2answers
8k views
Is there a way to force apache to return 404 instead of 403?
Is there a way how I can configure the Apache web server to return a 404 (not found) error code instead of 403 (forbidden) for some specific directories which I want to disallow to be accessed?
I ...
10
votes
2answers
8k views
How to use apache mod_rewrite and alias at the same time?
I have a directory outside the webroot that is used for storing images uploaded from a separate admin system. Images are stored in this format:
...
10
votes
4answers
15k views
How to rewrite an URL on a JBoss server?
I would like to redirect/rewrite this two kinds of URLs:
mydomain.com -> newdomain.com
mydomain.com/specificPage -> newdomain.com/newSpecificPage
mydomain.com/anyOtherPage -> ...
10
votes
1answer
304 views
mod_rewrite and GoDaddy
I really have only a fair idea of what I am doing. Sorry.
This is what I did to rewrite URLs like these:
http://example.com/foo/bar/news/1-category-name/2-item-name
...
9
votes
3answers
4k views
Any negative impacts when using Mod-Rewrite?
I know there are a lot of positive things mod-rewrite accomplishes. But are there any negative? Obviously if you have poorly written rules your going to have problems. But what if you have a high ...
9
votes
1answer
4k views
.htaccess with or without slash
What do I need to do to the following rewrite rule to make it so it works whether or not their is a slash at the end of the URL?
ie.
http://mydomain.com/content/featured
or
...
9
votes
3answers
3k views
How to rewrite URL without refresh, like GitHub.com
I was browsing GitHub.com and I noticed when looking at the source for a repository, and you click on a file, the source code slides in and the URL changes, but it doesn't appear as if the page has ...
9
votes
2answers
382 views
Validate url parameters in php [closed]
I have rules in my .htaccess for pages, show property id etc...
I want to make sure I validate every parameter I get to the right query im getting.
I have:
RewriteRule ^(.*)$ page.php?page=$1
...
9
votes
2answers
7k views
Proxying with SSL
I have a Linux host running Apache and a Windows host running IIS. I have a domain that points to the Linux host and need to relay (proxy) requests for it to IIS; I thus have the following virtual ...