for example my user name is Mai Share
so my page will be
http://www.maishare.com/Mai Share
if you tried to open it you'll get File Not Found error
so whats the solution ?
regards
XFileSharing Pro - spaces in user names got File Not Found
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Try this one: in htdocs/.htaccess find line
and replace there
with
Code: Select all
RewriteRule ^([0-9A-Za-z\-_]{4,64})(/[^\/]*/?|$)$ /cgi-bin/index.cgi?op=user_public&usr_login=$1&fld=$2 [L,NC]
Code: Select all
[0-9A-Za-z\-_]
Code: Select all
[0-9A-Za-z\-_\s]
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm