Steven10172
New Member
- Messages
- 23
- Reaction score
- 0
- Points
- 0
I currently have:
and it doesn't send the variable page.
An example url that doesn't work is: http://www.twclaimer.com/en10/calculator.php?page=bbcode, as the page=bbcode doesn't get sent.
I want the input of http://www.twclaimer.com/en10/calculator.php?page=bbcode and the output of http://www.twclaimer.com/claimer/calculator.php?page=bbcode&world=en10 but it only outputs http://www.twclaimer.com/claimer/calculator.php?world=en10
P.S. If you want to look at the error log go to http://pastebin.ca/1363785
Code:
RewriteEngine On
RewriteRule ^en(\w+)/(.+)$ /claimer/$2?world=en$1
RewriteCond %{QUERY_STRING} .+
RewriteRule ^en(\w+)/(.+).php$ /claimer/$2.php?page=%1&world=en$1 [L]
and it doesn't send the variable page.
An example url that doesn't work is: http://www.twclaimer.com/en10/calculator.php?page=bbcode, as the page=bbcode doesn't get sent.
I want the input of http://www.twclaimer.com/en10/calculator.php?page=bbcode and the output of http://www.twclaimer.com/claimer/calculator.php?page=bbcode&world=en10 but it only outputs http://www.twclaimer.com/claimer/calculator.php?world=en10
P.S. If you want to look at the error log go to http://pastebin.ca/1363785
Last edited: