i have configurate Htacess to remove arguement from URL * here's my htaccess so far:
Options +FollowSymLinks -Indexes -MultiViews RewriteEngine On RewriteBase / # ----- remove .php to .html -------- RewriteCond %{THE_REQUEST} \s/+(.+?)\.php[\s?] [NC] RewriteRule ^ /%1.html [R=302,L,NE] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{DOCUMENT_ROOT}/$1\.php -f [NC] RewriteRule ^(.+?)\.html$ $1.php [L,NC] # ----- END OF remove .php to .html -------- Now i want to make this URL
/nettoyage-detail-bureaux.html?id=31&desc=some_text to
/31/some_text NB : the file name in server is nettoyage-detail-bureaux.php