Answer the question
In order to leave comments, you need to log in
Correctly compose .htaccess?
At the moment I have this .htaccess
AddDefaultCharset UTF-8
ErrorDocument 401 /media/error/401.html
ErrorDocument 403 /media/error/403.html
ErrorDocument 404 /media/error/404.html
RewriteEngine On
RewriteRule ^([_a-zA-Z0-9]+)$ /system/page/profile.php?username=$1 [L,QSA]
Answer the question
In order to leave comments, you need to log in
You can exclude real-life folders and files by adding 2 conditions for the rule:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([_a-zA-Z0-9]+)$ /system/page/profile.php?username=$1 [L,QSA]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question