0

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 ?

1 Answer 1

1

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

Sign up to request clarification or add additional context in comments.

3 Comments

no it's not working, i still have onboard on my link
Clear history in browser and try
I did but still the same

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.