logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: mod_rewrite problems
Author
robbyc



Joined: 03 Mar 2007
Posts: 2

PostPosted: Sat 03 Mar '07 2:22    Post subject: mod_rewrite problems Reply with quote

Hi I have the following in my .htaccess file

Quote:

Options +FollowSymlinks
RewriteEngine on
RewriteRule georss/([A-Za-z0-9-]+)/([A-Za-z0-9-]+)/?$ georss.php?m=$1&url=$2 [L]

Yet the arguments do not seem to work. My webservice just says please specify a method which means that the m parameter is not set.

Any suggestions this is driving me insane
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7298
Location: Germany, Next to Hamburg

PostPosted: Sat 03 Mar '07 11:50    Post subject: Reply with quote

Did you allow .htaccess files in your docroot? (AllowOverride All)
Back to top
robbyc



Joined: 03 Mar 2007
Posts: 2

PostPosted: Sat 03 Mar '07 14:14    Post subject: :-( Reply with quote

Yeah AllowOverride is set to all.

Even the simplest example doesn't work.
Quote:

Options +FollowSymlinks
RewriteEngine on
RewriteRule georss$ georss.php?m=mv [L]


It is definitely redirecting to georss.php but the argument is not being passed?
Back to top


Reply to topic   Topic: mod_rewrite problems View previous topic :: View next topic
Post new topic   Forum Index -> Apache