This is my .htaccess
file,
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_URI} company
RewriteRule ^company/(.*)$ details.php?company_name=$1
RewriteRule ^(.*)\.php $1.php [L]
i have converted URL from,
www.myurl.com/detail.php?name-id
to
www.myurl.com/company/name-id
What i want is to remove special character (including # and +) from /name-id
last part of url and replace with dash.
If anyone can help it wold be appreciable, Thank You in advance.