Hi there im using this code to rewrite
This: index.php?page=articles&id=1
To: articles/1
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)$ index.php?p=$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)$ index.php?p=$1&sp=$2 [L]
The css changing and instead of searching /assets is searching for articles/assets. All of the website taking from one template as OOP template so what can I do? Thanks for helping.