Nadir Novruzov
Nadir Novruzov

Reputation: 477

.htaccess rewrite alphanumeric subdir

I want to rewrite (alPHa numeric including . and - symbols)

http://domain.tld/alP.Ha1-23

to

http://domain.tld/?~/az/forsaj/alP.Ha1-23

How can I do this? Please help.

Upvotes: 1

Views: 305

Answers (1)

anubhava
anubhava

Reputation: 785186

put this code in your DOCUMENT_ROOT/.htaccess file:

RewriteEngine On

RewriteCond %{QUERY_STRING} ^$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([\w.-]+)/?$ /?~/az/forsaj/$1 [L,QSA,NE]

Upvotes: 1

Related Questions