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)

-6
votes
2answers
20 views

create .html url on each image using php

i want to url on each page like this http://www.damnlol.com/the-new-instgram-facebook-filters-18142.html using PHP now i have uploaded images but display like ...
-1
votes
1answer
12 views

Apache Rewrite dosn't work

I am using the following rule to turn any domain name into a .com domain from a .co.uk one. Why doesn't this work? Do people have a better way of doing this? <IfModule mod_rewrite.c> ...
0
votes
2answers
8 views

restrict Apache RewriteRule to one forward slash per URL element

I have this Apache RewriteRule configured below, which has the problem that it allows the following URL without returning a HTTP 404 error. ...
0
votes
0answers
8 views

how to mod_rewrite with two rules

I am trying to write a mod rewrite script with two rules: http://mydomain.com/*/abc Run the below: /sales.php?file=abc http://mydomain.com/abc Run the below: /accounts.php?file=abc I ...
0
votes
0answers
5 views

How to mod_rewrite children of subdirectory

I have successfuly implement this code, tt gets http://www.domain.com/*/ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+)$ myscript.php?storenet=1&productid=$1 [L,QSA] I want to write a ...
0
votes
1answer
519 views

htaccess mobile redirect - full path redirect

So what I am trying to do is send mobile users from the existing page to a mobile subdomain. Below is a working script that does this. However, I would like it to direct users to the correct mobile ...
1
vote
1answer
145 views

How do I create a SEO url for query string

Let's say my URL is http://domain.com/category.php?id=2 to view all of articles in cars category. My database structure category table cat_id cat_name -------------------- 1 books 2 ...
0
votes
0answers
12 views

*solved* mod_rewrite behaviour different on Debian?

I've built a new Debian server for my PHP development and migrated all my apps from my old SuSe development box. On this new box, some RewriteRule directives are working, others are not. By "not ...
0
votes
0answers
9 views

htaccess and url encoding ? Escaping + and &

Options +FollowSymLinks -MultiViews RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-l RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ...
0
votes
2answers
19 views

htaccess restrict post access to specific url

I have one site witch is encrypted and i cant make this inside code. So i know that we can redirect or throw 404 error via mod_rewrite. Also my url is in cyrillic so in Chrome looks like ...
0
votes
0answers
12 views

convert dynamic url to keyword containing url with mod rewrite

I am working on a site that is based on java and php, the site urls are dynamic ones, like this: domain.com/index.php?event_id=155915&tv_id=987&tid=34910&channel=0 I want to convert ...
-1
votes
1answer
42 views

Prettify my URLs with PHP

I'm writing a site in PHP that I would like to have structures, nice, and pretty URLs in. I know in one site I had rules setup in the .htaccess, but I have to have some of these URL rules created ...
1
vote
3answers
470 views

How to remove multiple trailing slashes?

Here are my rewrite rules: ########### # Rewrite # ########### # Settings RewriteEngine On RewriteBase / # Cache Busting RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d ...
-4
votes
1answer
25 views

multiple slashes on url: how to remove?

Based on code found here: remove multiple trailing slashes mod_rewrite I have the following htaccess Options +FollowSymLinks DirectorySlash Off RewriteEngine on RewriteOptions inherit RewriteBase / ...
0
votes
1answer
17 views

remove part of query in url with .htaccess

I have the following url: http://somewhere.com/directory/proc.php?email=a@b.com&link=http://sendmehere.com The value in the "link" variable will always have http:// or https:// and i would like ...
0
votes
0answers
9 views

Rewrite URL and set redirect to rewritten URL

I am passing a country code in a parameter and I wish to rewrite that url. eg www.website.com/deal.php?country_code=gb to www.website.com/gb So far I have been able to rewrite it using ...
0
votes
2answers
14 views

HTACCESS how to mod_rewrite the website Asset File paths?

With Apache, how to make a URL (lets say an Image Path) to be actually coming from another location. For example, i have a html page with an URL like: apple.html, with the original codes inside: ...
0
votes
2answers
11 views

.htaccess how to remove subdirectory?

I have a website in which I want to enter http://mysite.com/myfolder but go to (load index.php from) http://mysite.com/dir/myfolder So which kind of RewriteRule should I use? The following rule ...
0
votes
1answer
10 views

Redirect specific get variable to other folder. htaccess

days ago I seek the solution in tutorials, manuals, forums, ... Still can not find the solution. I have the following url: www.example.com/?unsubscribe=31234242424 I need to redirect to: ...
-1
votes
1answer
26 views

Apache not showing index.html on address bar

I would like to show my index.html file on address bar. When you go to http://www.example.com/ to redirect it to http://www.example.com/index.html and show that index.html on address bar. EDIT This ...
2
votes
2answers
120 views

Apache URL Rewriting issue

i've set the rules, RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([a-zA-Z0-9_-]+)/?$ user.php?userid=$1 it redirects http://localhost/username to ...
0
votes
0answers
40 views

mod_rewrite: -OptionMultiviews breaks path to javascript

Maybe this is a stupid question, I know nothing about URL rewriting and .htaccess related things. I'm using the following code, to rewrite image URLs for mobile devices: <IfModule ...
0
votes
0answers
19 views

htaccess Query rewrite rule does not work - others work

I have Rewrite Engine working as these rules are working Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteRule ^index.html index.php Rewriterule ^home.html home.php RewriteRule ...
0
votes
1answer
23 views

Relative paths are not loading when used in html after using RewriteRule in htaccess

I searched online for a solution. I have my web application files on http://localhost.com/exampleFolder/ I have updated smoe rewriterule into my .htaccess file as below RewriteEngine On RewriteCond ...
0
votes
0answers
12 views

HTACCESS (Wordpress) how to rewrite the Asset File Paths?

First of all, i'm not really familiar with .htaccess rules. Please help me suggesting following thing i'm stuck in. I'm using Wordpress with Multi-sites. So my site structures are: - ...
0
votes
0answers
6 views

HTACCESS how to rewrite the Asset File Paths?

First of all, i'm not really familiar with .htaccess rules. Please help me suggesting following thing i'm stuck in. Lets say in my sites pages, i have used the fixed paths, for example: ...
0
votes
1answer
28 views

Mod Rewrite to a non existend direcotry

my problem is, that if I rewrite my URL with following rule RewriteCond %{QUERY_STRING} ^site=meine-bar&filter=([a-zA-Z]+)$ RewriteRule ^meine-bar/([a-zA-Z]+)$ ...
0
votes
1answer
23 views

CodeIgniter URL mod_rewrite

I am trying to study codeigniter. I am confused with URL mod_rewrite. I use 2 pages: home.php and about.php in view directory, and call them using controller Site. In both the pages i gave links for ...
0
votes
1answer
41 views

prevent direct linking to files from other domains with htaccess

I want to prevent other websites from direct linking the files available for download on my server. Instead, i want to redirect the visitors to a php file where i will display ads before the user can ...
0
votes
0answers
21 views

How to use Mod Rewrite correctly

since few days I'm wondering how mod rewrite is used correctly. When I'm working on my site, should I already link everything like it's visible for the user for exampel: <a ...
1
vote
1answer
16 views

mod_rewrite: pass all requests to query string

I've been struggling with this for hours and have now seen one 500 error too many! Any help would be greatly appreciated. I need a RewriteRule that will pass any and all requests to a query string. ...
1
vote
1answer
62 views

Ajax reload not working

I'll start this out by saying this: I'm very new to all of this. I'm really just crashing through everything I can find out. I'm an artist and a writer, I've only really gotten into developing this ...
0
votes
2answers
34 views

Custom .htaccess rules for web app

Ok, I'm trying to undersand mod_rewrite but I end up always confused with all this, so I'm asking if someone can help me with this custom rules. My web app will use 3 kinds of pages which currently ...
1
vote
1answer
22 views

RewriteRule overrules second rule and GETs index.php?

I have a RewriteRule which I thought worked: RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)/(.*)$ ...
3
votes
4answers
3k views

remove multiple trailing slashes mod_rewrite

I know this question was asked a number of times on this site alone, but browsing through the relevant posts I couldn't find a solution. Trying to remove multiple trailing slashes after domain. The ...
0
votes
0answers
14 views

rewrite subdirectories using htaccess

I want to rewrite URL from http://www.mydomain.com/student/abc/* to http://www.mydomain.com/student/data/* I have tried several methods for rewriting subdirectories using htaccess but none ...
0
votes
0answers
11 views

301 Redirect URLs that contain “index.php?”

I'm trying to redirect URLs based on the following example: From domain.com/index.php?/about To domain.com/about The old links are from a CMS that no longer is installed. A normal 301 redirect ...
0
votes
1answer
12 views

.htaccess work for domain but not for subdomains

I have a vbulletin with vbseo installed and the .htaccess code is # Comment the following line (add '#' at the beginning) # to disable mod_rewrite functions. # Please note: you still need to disable ...
0
votes
1answer
14 views

Using Mod_rewrite for short URL's

I'm trying to make my url's short using mod rewrite. Somebody told me it can be achieved using htaccess? Although I'm a novice at php/mysql I will attempt to solve my own problems via google and my ...
2
votes
4answers
3k views

Rewriting URL with .htaccess local in XAMPP

My .htacces begins with RewriteEngine on RewriteBase / (I tried it also without RewriteBase...) I tried all of the following rewriting rules to rewrite the URL index.php?page=news to ...
0
votes
0answers
7 views

How to htaccess redirect with cloak

http://www.example.com/folder/everything else I want to cloak this URL and load the one below. It will need to get the 'everything else' and add it as a get to the below. ...
0
votes
0answers
18 views

htaccess in PHP - 2 rewrite

I have a 2 sets of rewrite rules. RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.php -f RewriteRule ^(.*)$ $1.php // IF 404 RewriteBase / RewriteRule ^(.*)$ ...
0
votes
1answer
16 views

Slim Framework proper htaccess setup with wordpress

I want to make an api with slim. it would be on my "tools" subdomain in a directory called api. http://tools.fifaguide.com/api What should my .htaccess file look like? Currently my .htaccess is ...
0
votes
2answers
22 views

How to create mod rewrite rule for simple api

I want to make my first api, but im having trouble setting up the urls. The api url is here: http://tools.fifaguide.com/api/ So for example if some one goes to: ...
-2
votes
3answers
25 views

Htaccess Mod Rewrite issue

I have always been confused about .htaccess mod rewrite, so please bare with me. I want the following url: http://localhost/new/post?url=sample-post-one to Look Like this via htaccess mod_rewrite: ...
0
votes
1answer
16 views

change static url to dynamic with mod_rewrite

I need to change something like this: www.mydomain.com/www.otherdomain.com to this: www.mydomain.com/index.php?co=www.otherdomain.com Using mod_rewrite I came up with this: RewriteRule ^(.*.)+$ ...
-1
votes
0answers
16 views

mod rewrite - remove “index.php” from url

I have this site that a friend wanted me to my host for him, but the links dont work, because it uses some mod-rewrite rules in the .thaccess file (i really dont know how those things work...) and i ...
0
votes
0answers
11 views

RewriteRule in Jboss 7

I successfuly played with rewrite rules in rewrite.properties. Now, i would like to rewrite url like this: https://localhost:8443/test/customer1/login.xhtml to ...
1
vote
1answer
24 views

Apache Multiple Rewrite Rules

I have a 2 sets of rewrite rules. This is the Virtual Host: <VirtualHost *:80> ServerName datingjapan.co ServerAlias *.datingjapan.co RewriteEngine on RewriteCond %{HTTP_HOST} ...
0
votes
1answer
51 views

mod_rewrite increases load time

I am using mod_rewrite on my site url right now. Almost done. Before doing this my site was fast. Now it takes 2 or 3 seconds to load and a blank white loading page appears first. Is it usual for ...

1 2 3 4 5 229