I want to change the URL
My Url
http://localhost/MotoMate/corporate/company/kenstar
My target url will be
http://l
Try this code in /Moto/.htaccess
:
RewriteEngine on
RewriteBase /MotoMate/
RewriteCond %{THE_REQUEST} /corporate/company/(\S*)\s [NC]
RewriteRule ^ /%1? [R=302,L,NE]
RewriteRule !^corporate/company/ corporate/company/$1 [L,NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|js|img|css|captcha|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]