Please help htaccess

i want abc.com to abc.com/qb. not create qb folder. using htaccess… pls

I don’t understand. You want abc.com to redirect to abc.com/qb, but you don’t want to create that qb directory, so effectively everyone visiting your site would get a 404 not found!? :confused:

I think he said it backwards, he wants links to abc.com/qb/… to show the file found at abc.com/… that way the folder is “imaginary”

That does make more sense, yes.

That would be

Options +FollowSymlinks -MultiViews
RewriteEngine On

RewriteRule ^qb/?$ / [L]

hope that helps :slight_smile:

1 Like