0
votes
0answers
6 views

Redirect with htaccess from root to page in a subfolder

I would like to redirect my root folder to an index page that is found in a sub-folder: http://verm50.bla1.bla2.corp:1243 -> http://verm50.bla1.bla2.corp:1243/EDC/index.html I tried the ...
0
votes
1answer
14 views

.htacces redirect folder links to index.php routing page

My .htaccess file looks like this: RewriteEngine On RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] ...
0
votes
0answers
29 views

Secure individual Apache folders

I have an apache server running on my PC. In the main directory, I have two folders: A public folder and a private folder. I would like people to be able to access the public folder, but not the ...
0
votes
0answers
29 views

Can't access folder from server

I want to access a folder from the server .ie, "mysite.ca/demo" But it shows "You don't have permission to access the folder". My htaccess code is Options +FollowSymlinks RewriteEngine On RewriteBase ...
0
votes
0answers
21 views

Make Apache ignore the first folder?

I want to create a fake folder that is randomly generated and make apache ignore it. So my url would be: example.com/real/anything-here/index.php Does anyone know how to do this? Edit: I figured it ...
0
votes
2answers
30 views

How to redirect folders to index.php using .htaccess?

Folder structure: /index/ /upload/ /something/ These folders don't have .htaccess in them(and shouldn't). When accessing http://site.com/something it redirects to ...
0
votes
1answer
30 views

Using .htaccess for a variable folder

I am having a little trouble with using .htaccess for what I need it to do. This is the URL of the webpage: http://example.com/folder/$1/topic.php?id=$2 The only two things that change are $1 and ...
1
vote
3answers
80 views

Private folder in PHP?

My website deals with images. Whenever a user uploads an image it will be stored in "imagefiles" folder, but the problem is users can see all the images of that folder on web through http. To prevent ...
0
votes
5answers
74 views

htaccess mod rewrite folders hide [closed]

I have been struggling with my htaccess file for a while.. I have the following URL: http://www.mysite.com/folder1/system/folder2/file.php I managed to hide the .php extension but now im trying to ...
0
votes
0answers
33 views

.htaccess and .htpasswd folders planning for PHP application

I would like to implement a secure folder access mechanism for a PHP application. But I have some concerns I don't have a clue about, and I would like to ask for opinions. What I want to do is for ...
0
votes
0answers
13 views

htaccess Numbered subdomain to folder

htaccess Numbered subdomain to folder I want to direct 152.mydomain.com --> http://mydomain.com/tag/152 But the 152 can be anything, it will always be numbers though. How would I do this?
0
votes
1answer
56 views

Need htaccess rewrite to remove id part

I am looking for a rewrite rule to the same url's without the "#-" The # is the article ID, so it changes with each particular article. Categoryname also changes. ...
1
vote
1answer
30 views

Subfolder for testing

Can you help me with .htaccess? I have simple code Options -Indexes RewriteEngine On #RewriteBase / # front controller RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d ...
-1
votes
2answers
206 views

Hiding folder .htaccess

I need to hide a folder from a url. An example: If I enter www.mysite.com/jango.php I need you to read the directory: www.mysite.com/users/jango.php but do not want to see /users I just want to see ...
0
votes
0answers
43 views

htacces Redirect

I'm developing a website on my localhost, I have two website which have the same CMS. My directory stucture is like this css cms js images website1 website2 Now I have got the problems with ...
0
votes
1answer
457 views

Hiding folder in URL using .htaccess

I need to hide a folder from a url. An example: If I enter www.mysite.com/Jango I need you to read the directory: www.mysite.com/users/Jango but do not want to see /users I just want to see this ...
0
votes
0answers
63 views

.htaccess redirect from folder to index.html

I'm trying to make such redirects via .htacces. I have a number of folders (e.g. programs, buy, faq, etc) and would like to do the followings. if user requests /programs/, then redirect (301) him to ...
1
vote
2answers
55 views

Redirect images from folder to folder

I had a folder that contained 15000 images, i decided to put them in 10 folders. The initial folder url where i had my 15000 images was : www.mysite.com/images/games/ And the new folders' urls ...
0
votes
1answer
96 views

.htaccess mod rewrite - fake folder to path

I'm trying to make some redirects with .htaccess, and i've managed some redirects but not exactly what i want. I want something similar to what facebook has, when someone enters to ...
0
votes
1answer
63 views

htaccess to remove file extension and change folder

When people access mysite, for example mysite.com/folder1/i-love-stackoverflow, i'd like the file /home/myaccount/public_html/mysite.com/folder1/folder2/i-love-stackoverflow.html to be shown My ...
0
votes
1answer
40 views

Simple way to customize the message and layout when logging in to a secure folder? [closed]

I'd like to replace the default format of .htaccess with a more user friendly approach. Is there a simple way to customize the login process to a secure folder (message, layout, etc.) I'm getting ...
2
votes
2answers
176 views

mod rewrite subdomain to folder break paths to css and images

I'm trying to use mod rewrite to redirect a subdomain to a file with a parameter in a folder. The website is in a folder /new in the root. My .htaccess right now is (placed in the root) ...
0
votes
1answer
168 views

.htaccess mod rewrite folder to subdomain

So I have the main photos folder and I want to make it subdomain style so there is /images/ and /images/thumbs. What I'm trying to accomplish is 'converting' /images/ -> images.domain.com and ...
0
votes
0answers
90 views

1and1 hosting virtual folder using htaccess

I am trying to get several websites (using sub domains) to use a global folder for images and css. My folder structure looks like this: / /global-assets /global-assets/css /global-assets/js ...
0
votes
1answer
162 views

Rewrite all files from folder to another folder

I want redirect all requested files from folder-a to folder-b. E.g. http://www.yoursite.com/folder-a/index.php to http://www.yoursite.com/folder-b/index.php. How can I do that? I have verified if ...
1
vote
1answer
158 views

How to write a htaccess file to wildcard folder to subdomain

I'm trying to redirect all my folders (using a wildcard) to their subdomain. For example: www.mywebsite.com/folder1 to folder1.mywebsite.com/ www.mywebsite.com/folder2 to folder2.mywebsite.com/ ...
7
votes
1answer
120 views

mod_rewrite select a folder for the domain

Situation I'm using Zend framework, and thus attempt to call the folder by address ends in a fiasco and we gets the error: 'Invalid controller specified'. I needed to hook up additional forum to ...
2
votes
1answer
155 views

htaccess, redirect with regex: Folder to variable

I hope you can help me out with my little problem: I have an URL like so: www.blabla.com/images/q2uj89j2fq89hf943ghf74ßgq3789fg43/blue.jpg Inside the "images" folder i have a PHP Skript that ...
-1
votes
1answer
196 views

htaccess redirect site root to public_html folder

When users go to foo.com/bar they should see the site located in foo.com/bar/public. The public part has to be hidden. How can I achieve this using .htaccess? Thanks in advance
0
votes
2answers
260 views

Change public_html directory .htaccess

My folder for public_html is /domain.com/public_html/ but i want the htaccess to redirect them to the folder /domain/public_html/www/ but still have domain.com as domain and not domain.com/www . ...
0
votes
2answers
246 views

.htaccess - Subdomains to folders = subfolders 404

Sorry if the title is confusing. I have set up a virtual host on my local machine. I've set http://dev to map to my /htdocs/dev folder. With some help from dnsmasq and .htaccess, I've set it up so ...
0
votes
1answer
41 views

php how to allow some in a folder and not allow others in that folder

I am hosting my website on hostmonster.com. I am using php/mysql. I have a folder with pdf files: pfdfolder/. I want to give access to some users to that folder and deny access to other users to that ...
1
vote
2answers
643 views

Files in htaccess protected folder read by PHP script in the same folder

I have a folder protected by .htaccess (digest authentication). I need to read outputs of some scripts located in subfolders of this folder using file_get_contents. This reading script is located in ...
1
vote
1answer
141 views

htaccess to redirect both folder and file name

I have a file in a folder like this folder1/folder2/folder3/filename.htm. I also have another file like this folder1/folder2/folder3-filename.htm. When i browse the url ...
0
votes
1answer
51 views

htaccess get content from subfolder

I have searched a lot but cannot find the information i want. I have a domain http://mydomain.com, my html files are nested in 3 level subfolders (for example thingy.html is nested in t/h/i/ folder, ...
0
votes
0answers
281 views

Allow only one referrer access to folder htaccess

I need only one referrer to access a folder using htaccess. The following does not work: Order Allow Deny Allow domain.com Deny all I have a folder that I don't want any referrer to access outside of ...
0
votes
1answer
74 views

Rewrite .htacces first directory

This is the address I would like to use: http://mydomain.com/cars and I want to redirect ** http://mydomain.com/category/product.php?code=cars ** But I'm confused... becouse I'm able to do this ...
0
votes
1answer
953 views

Point sub domain to folder in root directory

I have registered a domain with Godaddy, e.g. www.domain.com In my domain management I have the domain pointing to "/" And I have a sub domain pointing to "/" I have set up a .htaccess in my root ...
0
votes
2answers
209 views

.htaccess redirecting requests to the same folder

I want to use .htaccessto redirect different requests to the same folder. E.g.: domain.de/ordner1/fileX.html domain.de/en/folder1/fileX.html domain.de/it/casella1/fileX.html So whenever something ...
0
votes
2answers
180 views

.htaccess code help in admin folder rewite

i done url rewrite below in .htaccess RewriteEngine On RewriteBase / RewriteRule ^admin/(.*) Rrrrr/core-.php [L] RewriteRule (.*) Rrrrr/core.php [L] All the files in admin folder should rewrite ...
-1
votes
1answer
150 views

htaccess excluding 1 folder from rewriterules

Depending on my value IS_HTTP, I decide after the code below, whether URL should be https or http. I want always http (redirected from https) for http://mydomain.com (has an empty QUERY_STRING), ...
0
votes
1answer
233 views

.htaccess and folder protection - Should I create another .htacess file in another folder?

.htaccess file contains a list of rewrite rules and works fine, .htaccess file is in the root directory, .htaccess contains: RewriteEngine On RewriteCond %{REQUEST_METHOD} !POST RewriteRule ...
0
votes
1answer
234 views

CSS/Javascript not working in folders/directories when using re-write rules in .htaccess

I'm using the .htaccess file to make my URLs SEO friendly, but when I add a folder in URL the CSS and Javascript stops loading. If I use this url it works (where id="123" and ...
1
vote
1answer
37 views

obtain user name from protected folder

I have a protected folder on my server with access to several users defined through cpanel. Is there a way for PHP to tell me which user has logged in?
0
votes
1answer
246 views

codeigniter controlled access to a url/folder

I am stuck at the situation where I want the url, which contains a folder having some files (html, swf etc.), to be accessible after I validate the user. For example. The url to access is: A - ...
0
votes
1answer
23 views

Hide a recurring folder

For some reason, I keep getting an empty folder called "blog" generated on my server. No idea why, I've asked on the WP.org forum, but to no avail - ...
2
votes
1answer
844 views

Overwrite rewrite-rule of htaccess in parent folder

I have a .htaccess with a rewrite-rule which just rewrites all in a parent-folder (/). Now I want to install Wordpress in a child-folder (/blog/), but this doesn't work, because the parent folder ...
1
vote
4answers
185 views

make PHP run file when viewing any folder

I know this must be something around .htaccess or php.ini. If a site visitor views ANY folder I want to automatically run a script listing the files in it (file_read.php). But I only want the ...
0
votes
4answers
802 views

PHP script to make page as a folder structure

I have a website with different pages but the query string looks ugly, how can I make it look like a folder structure instead of a query string, instead of actually having folders in my www?
0
votes
1answer
57 views

How to allow /X/ instead of ?ID=X access in URLs?

On me and my friends site we are wondering how to get ?ID=$ID just to show as a folder such as http://host/profiles/1/ We are guessing htaccess is required, but how is this done? Thanks.

1 2