aebstract Posted December 21, 2011 Share Posted December 21, 2011 I have this in my .htaccess RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([[:alnum:]_]+)/$ /index.php?page=$1 [NC,L] RewriteRule ^([[:alnum:]_]+)/([[:alnum:]]+)/$ /index.php?page=$1&var1=$2 [NC,L] RewriteRule ^([[:alnum:]_]+)/([[:alnum:]]+)/([[:alnum:]]+)/$ /index.php?page=$1&var1=$2&var2=$3 [NC,L] RewriteRule ^([[:alnum:]_]+)/([[:alnum:]]+)/([[:alnum:]]+)/([[:alnum:]]+)/$ /index.php?page=$1&var1=$2&var2=$3&var3=$4 [NC,L] RewriteRule ^([[:alnum:]_]+)/([[:alnum:]]+)/([[:alnum:]]+)/([[:alnum:]]+)/([[:alnum:]]+)/$ /index.php?page=$1&var1=$2&var2=$3&var3=$4&var4=$5 [NC,L] When I go to: url.com/Category/Intakes/ everything works fine url.com/Category/Motor Mounts/ I get 404 Not Found I know it's something to do with the space, cause I can manually type in anything without a space and it will go, anything with a space and 404. I'm unsure how to fix the regex to fix it though. Link to comment https://forums.phpfreaks.com/topic/253600-should-be-easy-fix-space-in-url/ Share on other sites More sharing options...
trq Posted December 21, 2011 Share Posted December 21, 2011 Spaces are not valid within a url. Get rid of them. Link to comment https://forums.phpfreaks.com/topic/253600-should-be-easy-fix-space-in-url/#findComment-1300234 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.