Directory-level configuration file used by Apache web servers.
145
votes
19answers
4k views
Cached, PHP generated Thumbnails load slow: How to find problem/solution from Waterfall graphs?
Question Part A ▉ (100 bountys, awarded)
Main question was how to make this site, load faster. First we needed to read these waterfalls. Thanks all for your suggestions on the waterfall readout ...
137
votes
11answers
107k views
Access-Control-Allow-Origin Multiple Origin Domains?
Is there a way to allow multiple cross-domains using the Access-Control-Allow-Origin header?
I'm aware of the *, but it is too open. I really want to allow just a couple domains.
As an example, ...
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 ...
73
votes
14answers
40k views
HTTP authentication logout via PHP
What is the correct way to log out of HTTP authentication protected folder?
There are workarounds that can achieve this, but they are potentially dangerous because they can be buggy or don't work in ...
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 ...
44
votes
8answers
22k views
Create Subdomains on the fly with .htaccess (PHP)
I am looking to create a system which on signup will create a subdomain on my website for the users account area.
e.g. johndoe.website.com
I think it would be something to do with the .htaccess ...
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
10answers
2k views
How to Block 100,000+ Individual IP addresses
Introduction
How do you Block large number of IP address from your web application/server. Obviously that can easily be done in PHP or any programming language
$ipList = []; // array list or from ...
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.
25
votes
6answers
5k views
Redirect 'myapp.com' to 'www.myapp.com' in rails without using htaccess?
Using Morph Labs' Appspace to deploy a site means no automated way to redirect 'myapp.com' to 'www.myapp.com' (and no access to .htacess).
Is there an in-rails way to do this? Would I need a plugin ...
24
votes
6answers
539 views
redirect 404 to similar urls
I have a website with stories in it. I can have multiple types of stories within multiple categories like:
children
romance
scifi
action
thriler
quests
The stories are accessible using urls like:
...
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 ...
20
votes
9answers
50k views
Deny direct access to all .php files except index.php
I want to deny direct access to all .php files except one: index.php
The only access to the other .php files should be through php include.
If possible I want all files in same folder.
UPDATE:
A ...
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
3answers
14k views
How to remove .htaccess password protection from a subdirectory
I have password protected my entire website using .htaccess but I would like to expose one of the sub directories so that it can be viewed without a password.
How can I disable htaccess password ...
18
votes
4answers
45k views
How to Specify “Vary: Accept-Encoding” header in .htaccess [closed]
Google PageSpeed says I should "Specify a Vary: Accept-Encoding header" for JS and CSS. How do I do this in .htaccess?
18
votes
6answers
3k views
Why avoid CGI for Python with LAMP hosting?
I have been using PHP for years. Lately I've come across numerous forum posts stating that PHP is outdated, that modern programming languages are easier, more secure, etc. etc.
So, I decided to start ...
17
votes
5answers
19k views
.htaccess redirect all pages to new domain
Which redirect rule would I use to redirect all pages under olddomain.com to be redirected to newdomain.com?
The site has a totally different structure, so I want every page under the old domain to ...
17
votes
2answers
9k views
How to append a path to PHP's include_path in .htaccess
Currently on my site I'm using statements like:
include 'head.php';
include '../head.php';
include '../../head.php';
depending on how many nested folders deep I am. I'm sure there is a better way ...
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
6answers
36k views
Mobile Redirect using htaccess
I have a website called
www.website.org
I have a mobile website called
m.website.org
I want to use an htaccess to automatically redirect the main website URL to the mobile version..
However, ...
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 ...
16
votes
1answer
2k views
.htaccess r=301 vs r=302
I am creating rules in my .htaccess for mobile, or bad pages etc...
I am using these rules:
rewriterules badpage /goodpage.html [r=302]
rewriterules iphone /iphone.html [r=301]
Which one is ...
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
3answers
18k views
.htaccess - Is it possible to redirect post data?
I have a website where all requests are redirected silently (via .htaccess) to index.php and then PHP is used to show the correct page (by traversing the REQUEST_URI).
I was wondering if it's ...
14
votes
1answer
2k views
Add Expire Headers in php can't make it work
I have Yslow add-on installed
When I checks my application in Yslow I get Add Expires headers which I don't know
I searched for relevant questions in SO and also Google I found this method ...
13
votes
3answers
30k views
Htaccess: Deny all, allow only one ip [closed]
I'm trying to deny all and allow only for a single ip. But, I would like to have the following htaccess working for that single IP. I'm not finding a way to have both working: the deny all and allow ...
13
votes
2answers
2k views
using htaccess password protection on rails?
I want the /admin route on my rails app to be protected by using .htaccess password files - is this possible?
13
votes
6answers
6k views
Using PHP/Apache to restrict access to static files (html, css, img, etc)
Lets say you have lots of html, css, js, img and etc files within a directory on your server. Normally, any user in internet-land could access those files by simply typing in the full URL like so: ...
13
votes
1answer
11k views
Popular techniques to debug .htaccess
I'm a self-taught coder and I like to debug by echoing suspicious variables and commenting out code.
Lately, I've had to learn more about the .htaccess file. I need it to do things like interpret ...
13
votes
3answers
160 views
How to restrict file upload size limit based on file type in .htaccess
Using .htaccess, is it possible to restrict the php file upload size limit based on type of file ?
For example, the maximum upload limit for images is 2 MB and maximum upload limit for PDF and DOC is ...
12
votes
5answers
23k views
Disable PHP in directory (including all sub-directories) with .htaccess
I'm making a website which allows people to upload files, html pages, etc... Now I'm having a problem. I have a directory structure like this:
-/USERS
-/DEMO1
-/DEMO2
-/DEMO3
-/etc... ...
12
votes
5answers
5k views
Make .git directory web inaccessible
I have a website that I use github (closed source) to track changes and update site. The only problem is, it appears the .git directory is accessible via the web. How can I stop this and still be able ...
12
votes
3answers
11k views
Caching and gzip compression by htaccess
Can someone provide me with an optimize .htaccess configuration that handles compression, browser caching, proxy caching, etc. for a typical website?
Aside from my visitors, I'm also trying to make ...
12
votes
6answers
304 views
Why is it a bad idea to tell your server to parse HTML as PHP? [closed]
You know you can make a server parse HTML pages as PHP (execute PHP code in a HTML doc) using .htaccess?
Well, some people say it's bad to do so. Why?
Some people also say it opens a security ...
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
4answers
12k views
.htaccess 301 redirect of single page
After a site redesign, I've got a couple of pages that need to be redirected. Everything is staying on the same domain, just a couple of things have been reorganised and/or renamed. They are of the ...
12
votes
3answers
14k views
hide .php extension - htaccess [duplicate]
Possible Duplicate:
remove .php extension with .htaccess
Hey guys I'm trying to hide the .php file extension but for some reason can't get it to work, my latest attempt was the following
...
12
votes
3answers
20k views
Remove index.php From URL - Codeigniter 2
I am having trouble removing index.php from my URLs in Codeigniter. I've made a few websites with Codeigniter 1.7 and the .htaccess code I used doesn't work in 2.
I have tried using
<IfModule ...
12
votes
4answers
11k views
What is the correct mime-type for serving an iPhone .ipa file?
I'm trying to post .ipa files onto our apache web server for our beta testers to download. Currently I'm using the following line in .htaccess to serve the files:
AddType application/octet-stream ...
12
votes
1answer
8k views
Using htaccess to change document root [closed]
My website has document root ~/public_html but i want to add all the files into ~/public_html/www
Is there a way to do this with htaccess?
Thank you.
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
4answers
27k views
.htaccess or .htpasswd equivalent on IIS?
Does anyone know if there is an equivalent to .htaccess and .htpassword for IIS ? I am being access to migrate an app to IIS that uses .htaccess to control access to sets of files in various URLs ...
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 ...
