vote up 0 vote down star

I installed a mod (pretty urls) to rewrite the urls of this SMF forum and it works for all the boards except this one:

http://mmaturf.com/forum/genghis-con's-turf/

I believe it has to do with apostrophe, but my mod rewrite skills are negligible.

The rule that was created looks like this:

# Rules for: boards
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1.0 [L,QSA]
RewriteRule ^([-_!~*'()$a-zA-Z0-9]+)/([0-9]*)/?$ ./index.php?pretty;board=$1.$2 [L,QSA]

Any assistance would be appreciated!

flag
the previous page leading to this one can be found here: <a href="mmaturf.com/forum/highlight-tv-turf/…; – Ben Oct 14 at 16:06
Where do you use those rules? In the .htaccess file in /forum/? – Gumbo Oct 14 at 16:13
Yes, the .htaccess fule in /forum/ – Ben Oct 20 at 19:46

1 Answer

vote up 0 vote down

Try escaping the apostrophe in the rule, i.e.

RewriteRule ^([-_!~*\'()$a-zA-Z0-9]+)/?$ ./index.php?pretty;board=$1.0 [L,QSA]
RewriteRule ^([-_!~*\'()$a-zA-Z0-9]+)/([0-9]*)/?$ ./index.php?pretty;board=$1.$2 [L,QSA]
link|flag
Thanks for the answer, although it didn't seem to fix the problem! – Ben Oct 26 at 22:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.