Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide directory name from URL

I just want to hide the dir name from URL.

From: example.com/dirname/somepage To: example.com/somepage

That code doesn't work for me, I have probably made some mistakes

RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule    /  /dir/$1    [L]

I have already this in .htaccess (to hide php extension)

RewriteEngine On
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) $1\.php [L]
like image 625
Nikos Grigoriadis Avatar asked Aug 21 '13 15:08

Nikos Grigoriadis


1 Answers

This should be your complete .htaccess:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) $1\.php [L]

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+dirname/([^\s]+) [NC]
RewriteRule ^ %1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (?!^dirname/)^(.*)$ /dirname/$1 [L,NC]
like image 196
anubhava Avatar answered Nov 15 '22 12:11

anubhava