| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Senior Member Join Date: Jul 2004 Location: Florida
Posts: 1,496
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | |
| | |
| | #2 (permalink) |
| NamePros Member Join Date: Aug 2008 Location: Solar System \ Earth \ Ukraine \ Kiev
Posts: 43
![]() | I would have done it this way: Code: RewriteEngine on RewriteRule ^play/([a-zA-Z0-9]+)/?$ /play.php?game=$1 [L] ????: NamePros.com http://www.namepros.com/showthread.php?t=715966 [a-zA-Z0-9] - allowed characters in game name, you may alter this set if you intend to use another characters; + means that there can be more than one character (word); /? - for both '/play/Pacman' and '/play/Pacman/' variants.; Then, all you need is to get game name in your play.php file: Code: $gameName = isset($_GET["game"])?$_GET["game"]:"";
__________________ Tired playing Freecell, Klondike or Spider? Discover 800 solitaire games at SolitairesUnlimited.com and play'em all! |
| | |
| | THREAD STARTER #3 (permalink) |
| Senior Member Join Date: Jul 2004 Location: Florida
Posts: 1,496
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | [a-zA-Z0-9] So if I want a space, ! or - or ' I would make it [a-zA-Z0-9!'- ] ??? (note the space before the end bracket)?
__________________ All offers are valid for 12 hours unless otherwise stated. |
| | |
| | #4 (permalink) |
| NamePros Member Join Date: Aug 2008 Location: Solar System \ Earth \ Ukraine \ Kiev
Posts: 43
![]() | Well, almost ![]() There are some tricks: in this particular case space should be escaped with \ and - should be the last character in [] So, finally it will look like this: Code: [a-zA-Z0-9!'\ -] Code: RewriteRule ^play/(.+)/?$ /play.php?game=$1 [L] And + means 1 or more characters defined by . If you need more information about regular expressions in .htaccess, you can follow this link.
__________________ Tired playing Freecell, Klondike or Spider? Discover 800 solitaire games at SolitairesUnlimited.com and play'em all! |
| | |