I want to make my url complet seo friendly, currently i am getting following format
https://kodlogs.com/index.php?qa=33938&qa_1=toolchains-found-toolchains-folder-prefix-mips64el-android
I want to get rid of index.php? in all question pages , and want them to be in same format in sitemap too , how do i do this?
I have read its something to do with .htaccess file, my config is as following what should i change:
#RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
</IfModule>