i have page with url http://worldsindia.com/company-search?company=jai&page=6 its' working fine but i want to use with .htaccess
like this http://worldsindia.com/search/jai/page/6
this is my .htaccess file
RewriteEngine On
<ifModule mod_headers.c> Header set Connection keep-alive </ifModule> ## EXPIRES CACHING ## <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType text/html "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresByType image/x-icon "access 1 year" ExpiresDefault "access 1 month" </IfModule> ## EXPIRES CACHING ## #AddOutputFilterByType DEFLATE text/plain #AddOutputFilterByType DEFLATE text/html #AddOutputFilterByType DEFLATE text/xml #AddOutputFilterByType DEFLATE text/css #AddOutputFilterByType DEFLATE application/xml #AddOutputFilterByType DEFLATE application/xhtml+xml #AddOutputFilterByType DEFLATE application/rss+xml #AddOutputFilterByType DEFLATE application/javascript #AddOutputFilterByType DEFLATE application/x-javascript RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)/?$ $0.php [NC,L] RewriteRule ^search/([A-Za-z0-9-\s&()/+']+) company-search.php?company=$1 [NC,L] RewriteRule ^search/([A-Za-z0-9-\s&()+/']+)/page/([0-9]+) company-search.php?company=$1&page=$2 [NC,L]
but it working with .htaccess file
can anyone help me please