I have a site it was runing without seo, I changed links to seo urls. I create seo links and save them in db. and usaqe is : seo_url, all fine with php part but having problem with htaccess setup. I read tons of articles and questions about htaccess setup, and after all I came to this solution which is not working correctly.
need some help espacially in Upanel pagination part. Upanel is a folder.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^home/?$ index.php [NC,L]
RewriteRule ^contact/?$ contact.php [NC,L]
RewriteRule ^Upanel/?$ Upanel/account.php [NC,L]
RewriteRule ^Upanel/page/?$ Upanel/account.php?page=$1[L]
RewriteRule ^reset-password/?$ forgot.php [NC,L]
RewriteRule ^change-password/?$ resetpass.php [NC,L]
RewriteRule ^user/?$ login.php [NC,L]
RewriteRule ^search/?$ search.php [NC,L]
RewriteRule ^hr-search/?$ ik.php [NC,L]
RewriteRule ^sitemap/?$ rss.php [NC,L]
RewriteRule ^([a-zA-Z0-9_-]+)/?$ detail.php?p=$1 [NC,L]
RewriteRule ^category/([a-zA-Z0-9_-]+)/?$ categories.php?q=$1 [NC,L]
Thanks for helps