Directory-level configuration file used by Apache web servers.

learn more… | top users | synonyms (1)

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 ...
4
votes
3answers
10k views

remove .php extension with .htaccess

Yes, Ive read the apache manual and searched here. for some reason I simply cannot get this to work, the closest Ive come is having it remove the extension but it points back to the root directory, I ...
6
votes
7answers
1k views

.htacces to create friendly URLs. Help needed

I'm having a hard time with .htacces. I want to create friendly URLs for a site I'm working on... Basically I want to convert this: http://website.com/index.php?ctrl=pelicula&id=0221889 ...
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, ...
5
votes
2answers
566 views

convert original URL to friendly URL

In my website there is a link to registered tutors. That link is something like this http://www.myweb.com/profiles/tutors/index.php?tutorCode=1285&tutorName=Robert%20Sakoo&city=Sidny So I ...
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, ...
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 ...
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 ...
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 ...
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 ...
6
votes
2answers
2k views

Allow/deny image hotlinking with .htaccess

So I've got this in my site .htaccess file to prevent hotlinking of images, JS and CSS from all other domains. RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} ...
2
votes
2answers
2k views

Force HTTPS for specific URL

This should be a quick one... here is my current .htaccess file: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond ...
2
votes
2answers
854 views

zend framework deployment in server

I have a server, where I have uploaded my work in zend framework(in a subdomain). the folder name is 'visit'. So, When I go to: http://mysitename.com/visit, it shows a directory structure: Parent ...
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... ...
4
votes
3answers
19k views

htaccess rewrite for query string [closed]

Ok, im pretty new at this and I would really appreciate some help, thanks! How can i rewrite this in .htaccess correctly? So I have a query string in my url: /?url=contact All i want to do is ...
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 ...
0
votes
1answer
55 views

.htaccess to redirect images

i'm still new to the redirectrule thing from htaccess and have successfully redirected my pages so that the pretty URL shows up, but is there a way to redirect the images so that it is not relative? ...
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 ...
10
votes
7answers
24k views

How do I write a .htaccess file to make CodeIgniters URL routing work?

I'm running a LAMP environment with CodeIgniter. I want to be able to use its URL pattern, like, http://localhost/controller/function/ID, but by default it has to be ...
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 ...
2
votes
3answers
3k views

How to Block Iframe call

Recently my complete site is called in iframe by two other domains. I would like to block other sites, who are trying to show my site in iframe. How can i block thru .htaccess?
8
votes
4answers
17k views

.htaccess for cakephp

I'm trying to get a CakePHP application to work. For this, I've set up a brand new Debian installation, updated the configuration and put everything in /var/www, which has the following content: app ...
10
votes
3answers
11k views

Apache Redirect 301 fails when using GET parameters, such as ?blah=

I've built a new PHP site for a customer and want to redirect the top ranking Google results from the old site structure to the new one. I've put several dozen Redirect 301's in a .htaccess in the ...
0
votes
1answer
261 views

Rewrite Problem - L(ast) not being respected?

So I'm working on a CSS/JS compressing system for a site, that has basically the following htaccess RewriteEngine On ... RewriteRule ^css/images/(.*)$ images/site/$1?%{QUERY_STRING} [L] RewriteRule ...
4
votes
1answer
8k views

mod_rewrite: remove query string from URL?

I'm trying to make the following redirection (301) using .htaccess *?page=1 redirects to * (where * is a wildcard). Basically, I just want to prevent anyone accessing a page with ?page=1 at the end ...
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 ...
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: ...
8
votes
2answers
10k views

Redirect subdomain into top-level domain's folder

Here's what I'm trying to do. When you type m.example.com I want users to be redirected to example.com/m/ but I would like the url in the address bar to remain m.example.com if possible.
7
votes
5answers
2k views

Deny ajax file access using htaccess

There are some scripts that I use only via ajax and I do not want the user to run these scripts directly from the browser. I use jQuery for making all ajax calls and I keep all of my ajax files in a ...
6
votes
2answers
10k views

Remove trailing slash using .htaccess except for home / landing page

I've successfully modified my .htaccess file to remove trailing slashes on most pages but I'm wondering how to exempt my home page/directory? For example: domain.com/test/ successfully redirects to ...
11
votes
3answers
7k views

How Can I Have A Conditional .htaccess Block?

This is an Apache question you've probably come across before. I want to have one source package that I can deploy to my workstation, my staging server, and my production server, but for it to load ...
6
votes
5answers
13k views

How to remove .html from URL

Do you have any idea how to remove .html from the URL of a static page. Also, I need to redirect any url with .html to the one without (ie. www.example.com/page.html to www.example.com/page).
4
votes
3answers
2k views

Restrict file access to authorized php users

I've inherited an application with a glaring security hole. It has session-based security, but file uploads (which are user specific) are not secured in any way and they are stored in the public ...
3
votes
2answers
3k views

.htaccess Redirect non-WWW to WWW preserving URI string

I'm running the CodeIgniter platform, which uses .htaccess to accept URLs like http://www.mysite.com/controller/function/argument I currently use some .htaccess rewrites, namely (simplified): ...
9
votes
4answers
14k views

Correctly switching between HTTP and HTTPS using .htaccess

We've got a shopping site which we're hosting on a shared host (Mediatemple Gridserver). Some parts of the site need to use HTTPS (checkout etc) but the rest should be using HTTP. Does anyone know ...
3
votes
2answers
1k views

mod_rewrite, php and the .htaccess file

I'm coding a small CMS to get a better understanding of how they work and to learn some new things about PHP. I have however come across a problem. I want to use mod_rewrite (though if someone has a ...
6
votes
3answers
221 views

The Redirection of Multiple Parked Domains doesn't Work with Filename [closed]

My problem seems simple to me but I cannot find a simple solution. Here goes: I have one main domain, and multiple domains pointing to that main domain. To avoid duplicate content I'm trying to ...
2
votes
4answers
2k views

Redirect *.php to clean URL

My htaccess doesn't quite work: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)\.php$ /blah/$1 [R=301,L] RewriteRule ^(.*)$ ...
3
votes
2answers
4k views

Remove .php extensions with .htaccess without breaking DirectoryIndex

I have the following rewrite in my .htaccess file which removes the .php extension from files, converting for example so.com/question.php to so.com/question. RewriteEngine On RewriteCond ...
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 ...
8
votes
5answers
22k views

convert htaccess to nginx [closed]

I'm having no luck converting htaccess rules to nginx rewrite. I've checked out the NginxRewriteModule documentation and have a few done, but the more complicate ones I'm at a loss for. Here's what ...
4
votes
2answers
2k views

Simulate file structure with PHP

I'm running PHP on a shared Apache web server. I can edit the .htaccess file. I'm trying to simulate a file file structure that is not actually there. For example, I would like for the URL: ...
7
votes
1answer
17k views

.htaccess redirect without changing address bar

I'm trying to write an .htaccess rule to redirect to a script, which further redirects somewhere else. Kind of like how URL shorteners work. However, I don't want the address bar to change during the ...
2
votes
4answers
898 views

htaccess mod_rewrite

I'm trying to put something with this, whenever I go to a page like: http://www.example.com/character.php?id=3 I want the mod rewrite to change it to: ...
6
votes
4answers
4k views

PHP cookie problem - www or without www

Why is it that if I create a cookie on www.example.com and check it on example.com, the cookie doesn't exist there? I am planning to just use .htaccess redirect non-www to a www domain. But how do I ...
2
votes
3answers
8k views

.htaccess to restrict access to folder

I have a php file that inherits (includes) another PHP files. All inherited files are located in one folder called "includes". I want to be able to restrict any direct access to this folder. Only PHP ...
6
votes
2answers
243 views

How to stop .htaccess loop

I am not expert in htaccess files and I am trying something that seems very simple but I have not been able to do it. I searched and finally find something here could work for my use but it didn't. ...
5
votes
2answers
2k views

Why does this cause an infinite request loop?

Earlier today, I was helping someone with an .htaccess use case, and came up with a solution that works but can't quite figure it out myself! He wanted to be able to: Browse to ...
4
votes
3answers
6k views

CodeIgniter PHP Apache 500 Internal Server Error

I have done a project in CodeIgniter its working fine on my localhost but giving 500 Internal Server Error in remote server this is my .htacces file content. RewriteEngine On RewriteBase /ezgov ...

1 2 3 4 5 30