Reputation: 705
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
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