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.

learn more… | top users | synonyms (3)

0
votes
1answer
5 views

How to use forward slashes in mod_rewrite as seperator

Here is my basic folder structure: root -->inhalt.php -->imgs/img.gif -->css/global.css Here my url to be rewirtten: http://www.mydomain.com/dev/project/sub/unterkunfte/wagram And ...
0
votes
0answers
8 views

adding exceptions to htaccess: showing just one page with different rule from others

i need some help about .htaccess issue. problem is that. i've a line like below. RewriteRule ^(page)/(\d+)?$ /index.php?page=page&id=$2[L] but i want to make a little specification like this: ...
0
votes
1answer
20 views

Rewrite rule with two variables if first variable is “profile”

Excuse my English, I'm currently rewriting [ example.com/about -> example.com?page=about ] I'd like to rewrite a second variable if the page requested is "profile", hence making [ ...
0
votes
1answer
12 views

How to write mod rewrite to serve @2x images from different path?

I am trying to use Drupal 7 to manage the content for an iOS app. I can setup Drupal to create retina (@2x) size and non-retina size images. Rather than update the app to get @2x images from a ...
0
votes
1answer
5 views

Wrong path using DictoryIndex and RewriteRule in htaccess

I have this in my .htaccess: Options +FollowSymLinks DirectoryIndex inicio.html RewriteEngine on RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.html -f ...
0
votes
1answer
10 views

Adding text before the site url

Example: You know the site about.com ? They have a whole subset of url's such as: pottery.about.com My question: How to get the "pottery" in front of the URL? Anybody have some nifty mod_rewrite ...
0
votes
1answer
11 views

.htaccess URL re-write (sitemap.xml to sitemap.php)

below is my current .htaccess file. I would like to add another condition/rule where if a request for sitemap.xml is made, sitemap.php is served instead. Please help : ) Options +FollowSymLinks ...
0
votes
0answers
4 views

RewriteRule causing redirection

I have IIS 7.5 with ISAPI_Rewrite(Helicon) I'm trying to do so that the robots.txt from each hosted site will be the same. For that purpose I have one dummy site(sometestsite.com) which has ...
0
votes
1answer
16 views

htaccess rewrite rule blog links

I have been using htaccess to remove rewrite certain URLs, however I am looking at something a little more complicated at the moment. Our website blog (WordPress) used to have links like this: ...
0
votes
1answer
19 views

htaccess folder organization and rewrite

I am having trouble figuring out how to work a rewrite, or even if it is a good idea. I would like to name my folders in my webroot the following way for the sake of organization: _fol.A _fol.B ...
0
votes
1answer
9 views

URL Rewrite web.config

i need little help with url rewrite. My php site is running on windows server. I am trying to rewrite urls so both categories and articles looks like this: hxxp://domain.com/category-name ...
-2
votes
1answer
43 views

How to redirect and remove index.php in Codeigniter [duplicate]

I'm using below htaccess to remove index.php from my url in Codeigniter. RewriteEngine on RewriteCond $1 !^(index\.php|images|robots\.txt) RewriteRule ^(.*)$ /index.php/$1 [L] The problem is that ...
0
votes
1answer
9 views

htaccess rewrite working differently

This is my .htaccess contents on my local development box. It works fine. But when I try the same on my hostgator shared server it does not work. RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f ...
0
votes
1answer
30 views

isset and $_GET with url, fix mod_rewrite

I have done mod_rewrite for category.php. RewriteRule ...
0
votes
1answer
26 views

Point to folder, not redirect htaccess

i have this htaccess, which redirects the user from stjernekaffe.dk to the directory. RewriteEngine on RewriteCond %{REQUEST_URI} ^/$ RewriteRule (.*) ...
0
votes
0answers
11 views

Apache mod_rewrite redirecting page assets

I just started using mod_rewrite for a web project, and I had finally got it to redirect the way I wanted but I have ran into a big problem. If I redirect the request /trades/id to trades.php?id=id, ...
0
votes
0answers
7 views

Concrete5: no input file selected

I've had a concrete5 install since January, this week we started to get "No input file specified" messages. The site works fine on the whole, its just login and file downloads which are affected. I ...
0
votes
0answers
11 views

How to internal redirect subdomains using Apache ModRewrite?

http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#redirect I'm trying to redirect all URL requests for my subdomains to http://mydomain.com/gateway.php?%1/$1. For example, if the user request ...
0
votes
0answers
18 views

URL Rewriting, create fakesubfolders with mod_rewrite

I'm trying to redirect that kind of URL : http://mydomain.com/Site/1-Test.htm To : http://mydomain.com/index.php?View=Site&Par=1 With apache2 And mod_rewrite, but I can't find a way to make it ...
0
votes
1answer
11 views

mod_rewrite backwards for old dynamic urls

I have mod-rewrite working ok on an apache 2.2, but the problem is that it doesn't work "backwards". I have these rules that makes SEO friendly urls work: RewriteRule ^sjg/([^/]+)/([0-9]+)/?$ ...
0
votes
1answer
11 views

IIS 7 URL rewrite module equivalent Apache mod_rewritte?

Currently we have an API serving in Apache with Mod Rewrite module with the following rules: RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php ...
0
votes
1answer
11 views

Is there a single variable I can use in mod_rewrite that is equivalent to %{DOCUMENT_ROOT}%{REQUEST_FILENAME}?

I am using mod_rewrite in the httpd.conf file (not in a .htaccess file) and I was wondering if there was a variable I could use that represents the entire request; ie DOCUMENT_ROOT represents the ...
0
votes
2answers
16 views

Redirecting a URL with query string

I've got a URL with a query string that I am trying to redirect and I just can't get it to work. The original URL not only has a query string, it's a Joomla SEF URL and contains a ? within the URL as ...
0
votes
2answers
21 views

Trouble with .htaccess mod_rewrite

Please can somebody take a look at my .htaccess code to help identify what's wrong. I am trying to amend all example.php, example.html and example.htm URL's to index.php?filename=example.html ...
0
votes
1answer
20 views

request uri redirect ignore subdomain

I have the htaccess code below being used to redirect mobile devices to the mobile page of a site. However, I need it to not redirect if it is a subdomain URL; ex: subdomain.mydomain.com What ...
0
votes
1answer
16 views

Please help to rewrite a URL

Sorry Please i am a new bie in url rewriting. I have a url like this http://www.sitename.com/subpages/detail.php?id=21-0043-052&car_name=abc i want to redirect this site to ...
0
votes
1answer
22 views

Apache .htaccess load subdirectory only if it exists

My current directory structure is /www/<project> which maps to localhost/<project>. What I would like to do is load localhost/<project> with /www/<project>/dist ONLY if a dist ...
1
vote
1answer
26 views

htaccess rewrite rules old.com/folder > new.com, w/ existing htaccess rule

Quite lost. I am trying to rewrite the URLs of an old site (old.com/folder) to an updated version of the site (new.com) using .htaccess, where old.com/folder should become new.com The forums ...
0
votes
2answers
22 views

.htaccess works in local but not on server (but no 404 error)

I have a .htaccess that is supposed to rewrite my URL. My host has told me that it supports URL rewriting, and I verified that by using phpinfo() and checking. Anyways, this is my .htaccess: ...
-1
votes
0answers
19 views

Change category number with its name Mod_Rewrite

I have page Search?cat=1&sub=2 and I want it to be rewritten, Categories Subcategories +-----+-------------+ +-----+------------+ | 1 | Mens | | 1 | Jeans | | ...
-1
votes
1answer
26 views

Trouble using mod_rewrite [closed]

A website I'm building uses a filename variable that's passed in via the URL to render it's pages. The code that takes this variable and looks up the data is within the index.php page. I intend to ...
0
votes
1answer
23 views

htaccess redirect to new domain with path and parameters

I need to redirect all traffic for one folder to a new domain. The setup is as follows: original site has a folder "admin" with a .htaccess file (see my rewrite rule below) all traffic should go to ...
0
votes
0answers
15 views

How to redirect to specific pages based on keywords of referers URLs

My site is getting traffic from a lot of various sites. I would like to put some mod_rewrite rules in my .htaccess file to redirect to pages based on keywords in URLs of referers I'm getting traffic ...
-1
votes
1answer
16 views

Apache mod_rewrite cuting URL

Please help to solve this problem: http://www.mysite.com/sale/category/subcategory How I can change it to http://www.mysite.com/subcategory using mod_rewrite
0
votes
2answers
54 views

Using htaccess and mod_rewrite to display new-page instead of newpage

I'm working on my website and I created a few new web pages that explains more details of my website. Now for seo purposes I know google prefers for the link to contain the key words. So the pages I'm ...
0
votes
3answers
27 views

Order of rules in .htaccess file

I have an .htaccess file like this: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^foo.*$ /cgi/foo.cgi [L] RewriteRule ^.*$ /cgi/fallback.cgi ...
0
votes
1answer
8 views

Redirect index.php to root, and www to non www with rewrite_mod [duplicate]

someone knows how can i redirect in the .htaccess this rules bellow ? http://www.domain.com/index.php to http://domain.com and http://www.domain.com to http://domain.com many tanks
-1
votes
0answers
14 views

Removing index.php with mod_rewrite on an HTTPS server

Is there a specific way to remove index.php from the requested URI with mod_rewrite on a domain that uses HTTPS connection? Or is the typical way to go about it the same as with an HTTP based domain?
0
votes
0answers
19 views

Apache ProxyPass exclude domain from virtual host

I am performing some reverse proxies on my apache server, but I'm running into some problems. I have a it proxying pages from another server which works fine with the following example: ProxyPass ...
0
votes
1answer
19 views

How to map three Websites under one domain to their folders with mod_rewrite only?

I have a project that has a splash page that points to two separate sites. The sites are hosted on the same server and they should be in separate folders for better maintenance. The folder structure ...
0
votes
1answer
21 views

Pagination and mod rewrite

The modrewrite below works when i have this which is exactly how i want: "www.mysite.com/files/person/john.html" files.php?q=person Options +FollowSymLinks RewriteEngine On RewriteCond ...
0
votes
0answers
28 views

htaccess forward one url differently

I am learning my way around the MVC framework. One of those aspects is the htaccess file, to clean up that URL. Now, I've finally come up with the htaccess you see below, but need to accomplish 3 more ...
0
votes
1answer
7 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
19 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
0answers
41 views

how to set “ShibRequireSession” on or off for a URL in htaccess

I want some thing like this, when a user visits a url www.example.com no rules is applied on it but, when user visits www.example.com/something else rules should be like, ...
1
vote
0answers
50 views

MVC Internal Server Error

I'm trying to build an PHP MVC. I currently watching this tutorial link But from the start its not working. I'm running it in WAMP It gives me this error: Internal Server Error The server ...
0
votes
0answers
25 views

.htaccess 301 redirection removing white space [duplicate]

My site link is containing name with lots of white space in parameter. file.php?dir=Songs/Bollywood%20Mp3/I%20Dont%20Luv%20U-2013 file.php?dir=Songs/Bollywood%20Mp3/Go%20Goa%20Gone-2013 ...
0
votes
0answers
19 views

How to remove .php file extension using mod_rewrite in httpd.conf, NOT in .htaccess?

I know that to remove .php file extensions in .htaccess we use the following code: RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php But I what ...
0
votes
0answers
10 views

How to use mod_rewrite in httpd.conf file to remove .php extensions?

I know that there are countless examples online of how to use mod_rewrite in a .htaccess file to remove .php extensions. I found this: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond ...
3
votes
2answers
27 views

Apache mod rewrite for dynamic pages

I'm having a problem with my mod rewrite rule that I wrote for my website, nothing seems to change as my pages URL are loading the same as before, if anyone could have a look at it and let me know if ...

1 2 3 4 5 223