3
I know you’ve asked before and there are a lot of answers on the Internet but none of them have solved my problem. I have an entire site in php, with several pages and would like to make url friendly to their variables. For example, let index.php be just /index and profile.php? id=2 turn profile/2. Must join all pages before making the URL friendly or you can do so anyway?
Thanks in advance
Related: http://answall.com/questions/1326/como-posso-simplificar-os-urls-para-um-site
– user28595
I was able to access the htacess and formulate the variables, but the images break, there is no stylesheet. I used the code: Rewriteengine On Rewritecond %{REQUEST_FILENAME} ! -f Rewritecond %{REQUEST_FILENAME} ! -d Rewriterule Fight/Battle/(.) Fight.php? Battle=$1 Rewriterule Citizen/profile/(.) profile.php? id=$1
– Allan Bru
read the related links and understand why css and js are not loading
– Daniel Omine