Jump to content

form submission problem


micmania1

Recommended Posts

I want to rewriten file that uses forms submitted with the GET method.

 

So I have my rewritten URL: domain.com/page/

and when the form is submitted it will be domain.com/page.php?var=1

 

I want to redirect the 2nd URL to a rewritten url: domain.com/page/1/

 

Trouble is, it is just looping because I have 1 line telling it to redirect .php to / and the other telling it to read the php file.

 

Can anybody tell me how to do this?

Link to comment
Share on other sites

RewriteRule ^hg/(.*)/\?(.*)=(.*)$ /hg/$1/$2/$3/ [R=301]

RewriteRule ^hg/(.*)/$ /hg/$1.php
RewriteRule ^hg/(.*)/(.*)/(.*)$ /hg/$1.php?$2=$3

 

Example:

A form is submitted using GET to page/

Obviously, the variables will be at the end of the url as so: page/?var=1

 

 

However I want my files rewritten as page/var/1/ so I am trying to redirect it from page/?var=1 to page/var/1/.

 

The trouble i'm having now is that it simply won't redirect so i'm stuck with page/?var=1

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.