0
votes
1answer
4 views

Redirecting with htaccess rewrite map

I am using following code to redirect all url with capital case latter in it to equalant small-case version of same url. RewriteEngine On RewriteCond %{REQUEST_URI} [A-Z] RewriteRule (.*) ${lc:$1} ...
0
votes
1answer
18 views

httaccess URL rewriting

RewriteEngine On Options +FollowSymlinks RewriteCond %{HTTP_HOST} ^example.com$ RewriteRule ^$ http://example.com/index.php?flash=1 [L,R=301] I have a page where I want to rewrite my base url, but ...
0
votes
1answer
19 views

mod_rewrite for specific url only

I'm into rewriting a url in different ways. I mean I want to know how to use mod_rewrite so I can do the following: 1- convert a .php to html for a speific url i.e: from www.mydomain.com/news.php to ...
0
votes
1answer
11 views

Rewrite with relative path

I am going nuts over a reqrite rule on my local machine... i even enabled the rewrite log and this is what i get from a single page load on the url it should rewrite: ip - - [21/May/2013:08:13:18 ...
0
votes
1answer
22 views

Using .htaccess to change directory in url

I am trying to change the url that is displayed in the address bar from mysite.com/blog/wedding-hair/ to mysite.com/services/wedding-hair/ using .htaccess. Using answers from: assigning different ...
0
votes
0answers
14 views

.htaccess rewrite rules: category id page not being changed

I'm new to rewrite rules in .htaccess, and I'm having some trouble. I have the following working well, so that www.mydomain.com/index.php is changed to www.mydomain.com Options +FollowSymLinks ...
0
votes
1answer
15 views

htaccess rewrite all subdomain to index.php

I know this question has been asked a lot but I don't know why it does not work for me :-? this is my htaccess: Options +FollowSymLinks IndexIgnore */* # Turn on the RewriteEngine RewriteEngine On # ...
0
votes
2answers
12 views

Using or ( | ) statement in .htaccess rewrite rules

Instead of writing 2 rewrite rules for pointing to the same page, I though I would be able to do this with one rule using the Or statement ( | ): RewriteRule ^([\d]+)-post[\d]*\.html|#post([\d]+) ...
0
votes
1answer
19 views

MVC htaccess rewrite - hide index

I have a basic MVC structure with a restful uri design of: mysite.com/appdir/:index/:controller/:action/ and I want to hide the index route parameter so my uri looks like: ...
0
votes
0answers
26 views

RewriteEngine to hide extensions and GET

How can I rewrite this URL ? http://website.com/file.php?lang=en to http://website.com/file/en File name and parameters can change, I found a lot of topics put I did not found the combination of ...
0
votes
0answers
15 views

mod_rewrite url simplifying

I would like to setup mod_rewrite such that when a user visits domain.com/user/1123456789, the actual page being shown is domain.com/displayuser.php?userID=1123456789. My intent is to simplify the ...
0
votes
0answers
10 views

.htaccess delete the trailing slash

When I created my website I wanted a url with the three "w" without a trailing slash so I did the following in my .htaccess RewriteEngine On RewriteCond %{HTTP_HOST} ^domain.es RewriteRule (.*) ...
1
vote
1answer
29 views

rewriteRule to make url user friendly

I have two rules. first one to allow request without .php extension and the second one rewrite all request start with /account/(.*)$ to /account.php?action=$1. what's wrong with the account rule? ...
0
votes
0answers
25 views

.htaccess route with file check not working with querystring

I'm certainly no expert with .htaccess files, so bear with me.. I have a nice simple rule: RewriteCond %{DOCUMENT_ROOT}/landing-pages/$1.aspx -f RewriteRule ^/(.[^/]*)/?$ /landing-pages/$1.aspx ...
1
vote
0answers
37 views

Rewrite rule for subdomain, nice URL variable and slash

I struggle with setting up proper mod_rewrite rule for my domain. I was never any good at regexp-kinda expressions, but every documented tutorial I just fail to use for myself. Domain: example.org ...
0
votes
0answers
20 views

Hide GET parameters in a URL / rewrite to a clean URL / save GET params in SESSION?

I've looked around here but I can't find a matching solution to my problem here. What I want to do is 1) clean up the URLs with GET params in them and 2) save those GET params in session variables. ...
0
votes
1answer
36 views

URL rewriting for video file htaccess

I want rewrite url http://site.com/videoplayback?pkey=05131305222303&hkey=a7432d324546a9b2c24abb4e81a26e67&tkey=l4i5w5s444&fkey=05131305222303.mp4 to ...
0
votes
0answers
12 views

Wrong url converting

I was wondering if it is possible to do the following with htaccess. The url a user types is www/yoursite.be/test/test/ The url I want to redirect to is www.yoursite.be/test/test/ does anyone ...
1
vote
2answers
40 views

.htaccess - re-writing a url using multiple parts of the original

I've been trying to fix this problem for 3 days and can't find the answer so I'm hopeful someone will be able to shed some light on this. I am looking to dynamically re-write URLs as permanent 301 ...
1
vote
2answers
38 views

Removing Part of URL with .htaccess

I have recently removed a module from Magento that created vanity URL, for filtered searches. When I've removed this module its now using URL parameters for all filtered navigation pages. I want to ...
0
votes
1answer
37 views

How to rewrite url while keeping additional parameters in .htaccess file?

I have the standard htaccess which just catches all and puts it into one url parameter which is later processed in code... RewriteRule ^config/ - [F] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond ...
1
vote
2answers
31 views

Allow google to access just one folder and block the rest of site

EDIT: Doing this with robots.txt isn't good enough for me. This code block entire site from google. I do not know how to keep this code functional but allow google to access one folder on the site. ...
0
votes
2answers
33 views

Display name in URL from sql

I am having a list of members in my database, which i want to display in my website. I am using php GET method, and the sample url is com/members.php?id=454418 Can anyone please help me in getting ...
0
votes
0answers
8 views

Using rewrite URL's in subdomain not work

At the moment, I have this code in the file .htaccess RewriteCond %{HTTP_HOST} ^domain\.com [NC] RewriteRule ^(.*)$ http://www.domain.com%{REQUEST_URI} [r=301,NC,NE] I want, you can use the url's ...
0
votes
1answer
13 views

Unwanted result while using .htaccess for 2 rules

I'm working on a web application with PHP. I'd like to have clean URLs, so I wrote a .htaccess file for it. Everything is ok, but just for 1 rule. Look at the code below: RewriteEngine on Options ...
0
votes
1answer
23 views

Can I access the URL rewritten with mod_rewrite on the client when it's not shown in the URL?

Still on my first attempts with mod_rewrite. I'm currently doing this to rewrite URLs: RewriteRule ^/(.*)/$ /index.html?app=%1 [L] RewriteCond %{REQUEST_URI} !^/(modules|html/.*)$ RewriteRule ...
2
votes
1answer
23 views

How to mod_rewrite a query parameter to a path folder name?

I'm doing my first steps with url-rewriting and can't get the following to work: In my application, a skin can be loaded by applying query parameter ?skin=some_id to any page in the application. I ...
0
votes
1answer
19 views

Redirect to a specific subfolder using htaccess

Here's my folder structure: website.com main sub1 sub2 ...
0
votes
0answers
24 views

Multiple domain, and URL Rewriting

I'm trying to bind different domain names on a single PHP platform. All requests on this platform are performed on a "core.php" file, at apache www root level. For example i'll access one application ...
0
votes
1answer
13 views

htaccess rule to rename .php to .html is interfering with other rules

I am attempting to change all .php files to .html extensions and the rule I am using is interfering with other rules in my .htaccess file. It appears that I can either get one set of rules to work or ...
-1
votes
0answers
59 views

Rewrite URL with .htaccess, can access like Directory with / or no

I have the file about.php file at domain.com and want domain.com/about.php to be access able with domain.com/about or domain.com/about/ This is my RewriteRule RewriteRule ^(.*)/$ index.php?to=$1 ...
-2
votes
1answer
20 views

Three Variable Rewrite Rule with city,state, and zip

I'm use a rewrite rule and map: mydomain.com/miami-fl-33308/ to mydomain.com/city.php?ci=miami&st=fl&zi=33308 Thanks!
0
votes
2answers
81 views

htaccess redirection in codeigniter

I have the following code in my .htaccess: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /annsenglishmediumschool RewriteCond %{HTTP_HOST} shops.annsenglishmediumschool.com ...
0
votes
3answers
63 views

Redirect Url in codeigniter

I want to redirect a url in my lcalhost ,as when user types : mystring.localhost/CI to localhost/CI/Mycontroller/Myaction/mystring in codeigniter .its now showing Server not found and says browser ...
0
votes
4answers
147 views

URL rewriting with PHP

So basically I got this URL that looks like this: url.com/picture.php?id=51 How would I go about converting that URL to picture.php/Some-text-goes-here/51 I think wordpress does the same. I need ...
0
votes
1answer
38 views

.htaccess - redirecting several pages

I've been trying to wrap my head around .htaccess for most of the weekend, but I keep stumbling; I can get the server to work with one set of rules, but no more than one at a time. My application is ...
0
votes
1answer
18 views

Apache URL Rewrite: Dealing with Two Similar Rules

Question: How do I write rules when they are similar? My Rules: RewriteRule ^blog/([0-9]+)/[-0-9a-zA-Z]+/?$ index.php?action=blog&postID=$1 [NC] RewriteRule ^blog/([0-9]+)/[-0-9a-zA-Z]+/?$ ...
0
votes
2answers
25 views

Multiple RewriteRule

I would like to have multiple RewriteRules in my .htaccess file. # Enable Rewriting RewriteEngine on # Rewrite profile urls # Input: /user<userId> # Output: /profile.php?id=<userId> ...
0
votes
0answers
28 views

URL Rewriting with Slim

I've just finished writing a basic REST API using Slim and I'm having problems getting URL rewriting to work, as we have our API dispatcher called "api.php" located in the root of our Apache webdocs ...
0
votes
1answer
26 views

how to set default value of query string in .htaccess?

I want to set overridable default query string with index.php like example.php/1 I tried RewriteRule ^([^/]+)/([0-9]+)/?$ index.php?p=1 but didn't get success. can anybody help me to solve it.
1
vote
2answers
32 views

What's wrong with my RewriteRule? It seems ok, but it doesn't work

I have a rewrite rule on my webpage. RewriteEngine On RewriteRule ^(.*) index.php?p=$1 [L] I want it to work so it rewrites URLs like this: http://example.com -> index.php ...
1
vote
2answers
63 views

(htaccess) Rewrite English names of php files to their Dutch equivalents

I would like to rewrite the English names of php files to their Dutch equivalents. For example: someurl.com/news.php?readmore=4#comments should become someurl.com/nieuws.php?leesmeer=4#kommentaar. ...
1
vote
2answers
43 views

Apache Rewrite Rule with Habari Default Rewrites

I've switched my blog from one CMS/Blog System to using Habari which has some default Apache rewrite rules and I'm trying to redirect all the old article URL's from /articles/article-name to ...
0
votes
0answers
16 views

Re-writing the URL's in page source

Is there a way we can rewrite the URL's appearing in page source? What I'm trying to do is... I have deployed my application on tomcat and created a proxy using httpd. Now I want to enable URL ...
2
votes
2answers
37 views

New to .htaccess and RewriteRule

I'm making a site where users can create subdomains with files, folders etc. these sites go into a folder called websites so it will be site.com/websites/subdomain.site.com I only need to get ...
0
votes
1answer
33 views

htaccess rewrite rule (arbitrarily path to index.php)

is it somehow possible to have a pattern which represents any path sequence which substitutes to my index.php with a parameter which holds the given path? I have this rule RewriteRule ^([^/.]+)$ ...
1
vote
1answer
26 views

HTACCESS - ErrorDocument + RewriteRule = Infinte Loop

I got an issue with ErrorDocument and RewriteRule. In simple words, here is what I have: 1. ErrorDocument 404 http://www.MYSITE.com/Cust404.html 2. RewriteEngine On #/Some very needed custom ...
1
vote
0answers
35 views

How to add .htaccess {REQUEST_URI} at the end of this Rewrite Rule? [duplicate]

Im making a site where users can create subdomains with files, folders etc. these sites go into a folder called websites so it will be site.com/websites/subdomain.site.com I only need to get ...
-2
votes
1answer
31 views

.htaccess rewrite addon domain to main domain subdirectory [closed]

I have something like this main.net/ <-main domain addon.com <- addon domain subfolder/subfolder2 <- subfolders in main domain dir I want to rewrite a request to something like ...
-1
votes
2answers
59 views

Rewrite url with multiple get variables

I have a url that looks like this http://mysite.com/item/?food=1&drink=1&bar=1&name=Bomba I want to make it more friendly and maybe more secure and to look something like ...

1 2 3 4 5 28