Rewrite Rule looping error


 
Thread Tools Search this Thread
Top Forums Web Development Rewrite Rule looping error
# 1  
Old 09-07-2012
Rewrite Rule looping error

Hi,

I have a domain "test.example.com" and i wanted to redirect only request like "test.example.com /index.html" to "test.example.com/index.html?NEW=1". Please note that a extra string "?NEW=1" added at the end of the URL.

So Request for http://test.example.com/index.html REDIRECTS TO http://test.example.com/index.html?NEW=1

Below rule endup with looping error.

Rules
RewriteEngine on
RewriteCond %{HTTP_HOST} ^test\.example\.com$
RewriteRule ^index.html$ /index.html?NEW=1 [L]

Please guide me on rewrite rule. Thanks in advance

Regards
Wintech

Last edited by Paulwintech; 09-14-2012 at 04:11 PM..
# 2  
Old 09-07-2012
Not sure, but you added a slash as well as a ?NEW=1

Apache mod_rewrite Introduction - Apache HTTP Server
# 3  
Old 09-10-2012
Hi,

Can anybody help me on this please?

Regards
Paulwintech
# 4  
Old 09-14-2012
Hi,

Can anybody help me on this rewrite rule looping error.....

Regards
Paulwintech
# 5  
Old 09-14-2012
Have you tried his suggestion? In what way did it not work? Any more information you can provide may be helpful. Pointless "please help me" posts on the other hand are not helpful.
# 6  
Old 09-14-2012
Corona688, Yes i tried his suggestion by trying the below Rewrite rule option, but endup in endless looping error

RewriteEngine on
RewriteCond %{QUERY_STRING) !NEW
RewriteRule .* index.html?NEW=1 [L]

---------- Post updated at 01:42 AM ---------- Previous update was at 01:11 AM ----------

Hi Corona688,

Any luck? for my rewrite query please!!!

Regards
Paulwintech

Last edited by Paulwintech; 09-14-2012 at 04:55 PM..
# 7  
Old 09-14-2012
You have acrued so many infractions in such a short amount of time that one more will set you read-only for several weeks.

I was out of the office, bumping didn't help me answer faster.

If we don't answer immediately, wait! We are not "on-call". At the very least, post something you tried which didn't work and it's effects. Any more useless "help me" posts will get you banned.

Looking now.

Last edited by Corona688; 09-14-2012 at 06:44 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Error in looping through files

Hi, I've got a folder with several files I'd like to manipulate. The file names are all ending in .txt and I'd like to loop through their names for manipulation. This is the script I've got so far: for i in 'ls *.gtc.txt|cut -d "." -f1'; do echo${i}; done It should be easy enough, but... (2 Replies)
Discussion started by: zajtat
2 Replies

2. Web Development

ReWrite rule giving a hard time.

Hi all, I am trying to find a rewrite rule that can help me with the following situation. So I am currently on a page which has a URL: http://www.test.mobile.com/#!/shop/phones/max-plus/features/ Now when I hover over a certain link, I can see that it will goto: <a... (0 Replies)
Discussion started by: Junaid Subhani
0 Replies

3. UNIX for Advanced & Expert Users

[SOLVED] htaccess rewrite rule help!

hi there, I need that when user input mysite.com/ponuka/AAA2869 it shows mysite.com/ukaz.php?ponuka=AAA2869 because of facebook likes, and I found out that this is set up as rewrite rule in .htaccess file? how to achieve it? thank you... :confused: ---------- Post updated at 04:47... (0 Replies)
Discussion started by: vogueestylee
0 Replies

4. Shell Programming and Scripting

multiple looping with case and funtion showing error, Please help

Hello All, I have code as follows :- while true do {opening a case1 statement} 1) {opening another case2 statement} {closing case 2} 2) Showing error for "2)" as Syntax error at line 59 : `)' is not expected. *) {closing case 1} ... (5 Replies)
Discussion started by: Renjesh
5 Replies

5. UNIX for Advanced & Expert Users

Apache rewrite rule help needed

Hi All, I want to redirect from http://localhost/abc/xyz/def?cc=dk&lc=da to http://localhost/abc/mnc/pdf?cc=dk&lc=da. Please suggest a rewrite rule. (0 Replies)
Discussion started by: jagnikam
0 Replies

6. Web Development

Need help with rewrite rule

Hi, I hosted my site on Apache web server. I wanted to redirect all the users request to a HTML page(maintenance page). I used the below rewrite rule to do ths same. RewriteEngine on RewriteRule .* /maintenance.html The maintenance.html page contains an image. When ever I try to... (2 Replies)
Discussion started by: BSrikanthB
2 Replies

7. Web Development

.htaccess Rewrite Rule

Hello All, I have been asked to create a .htaccess redirect. I have never attempted to work with one of these files. We have a pretty vanilla LAMP setup using rhel4 apache1.3 and php4.2.3. I was instructed to place the .htaccess file in the document root of the site and and to attempt to... (1 Reply)
Discussion started by: jaysunn
1 Replies

8. Shell Programming and Scripting

grep help, how do i rewrite this

Thanks , franklin you method worked, i knew i had to use a while loop and getline in there just didnt know the proper order :) Hi everyone, im trying to make the following command line shorter by introducing a script that join up all the grep commands ./new1a < numbers.txt | grep -i -v '^a '... (5 Replies)
Discussion started by: weezybaby
5 Replies
Login or Register to Ask a Question