I have this rewrite rule to access profile.php?user=username with mysite.com/username..
Problem with this is that it ignores my css, even if I use the full URL and whats weird is that its the same if i go to the regular url, profile.php?user=username. But If i remove my htaccess file the css works.
RewriteEngine on
RewriteRule (.*) profile.php?user=$1 [QSA,L]
Whats the problem here? Thanks in advance :>