I read similar questions on stackoverflow, but haven't found solution to my problem.
In my .htaccess, I have:
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
I need to add one more redirect. I have a real site page - domain.com/some_real_page, and I need a shorter link for it - domain.com/link. How is this possible?
Tried to do the following, but it is not working:
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
RewriteCond %{REQUEST_URI} ^/some_real_page$
RewriteRule ^(.*)$ http://www.domain.com/link [R=302,L]