Now I'm working on localhost:8080/basic/web. What I want to do it try to rewrite the url into localhost:8080/basic only. here is my .htaccess file
RewriteEngine on
# Change yourdomain.com to be your primary domain.
RewriteCond %{HTTP_HOST} ^(www.)?localhost:8080$
RewriteCond %{REQUEST_URI} !^/basic/web/
# Don't change this line.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /basic/web/$1
RewriteCond %{HTTP_HOST} ^(www.)?localhost:8080$
RewriteRule ^(/)?$ basic/web/index.php [L]
Please help!!!