Bynd
Bynd

Reputation: 705

remove a part of url using htaccess

I have a website on my localhost and an url is http://localhost:8484/myweb/onboard

how can I change the url to be like http://localhost:8484/myweb/ without onboard but still point to the same page, is it possibele ?

Upvotes: 0

Views: 33

Answers (1)

Shibin Raju Mathew
Shibin Raju Mathew

Reputation: 930

Just try with following htaccess

RewriteEngine On 
RewriteRule ^$ onboard/ 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ onboard/$1

don't forgot to enable rewrite_module in server

Upvotes: 1

Related Questions