URL Rewriting is causing an error

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    URL Rewriting is causing an error

    Hey guys i'm trying to make "Pretty URL" using .htaccess now my problem is images and css aren't loading when i access the new url and the pages load really slow here's an example original url my6love | admin's | profile is working fine and the new address is my6love | admin's | profile how can i fix this?

    ##########################

    Thanks for reading i just figured the mistake i made now i fixed it i in .htaccess i had put
    Code:
    RewriteRule ^profile/([a-z0-9]+)/?$ user.php?nick=$1 [NC,L]
    so people can visit mysite/profile/username now i changed the above code to
    Code:
    RewriteRule ^([a-z0-9]+)/?$ user.php?nick=$1 [NC,L]
    so users can visit mysite/username and now it's working thanks for your time
    Last edited by s3nzo; 07.11.11, 18:56.
    libra.wen.ru
Working...
X