I have a question here:
On my server, there is:
http://www.domain.com/folder1/abc/html/index.html
In index.html there are some links of images or pdf files:
Then I use .htaccess make the URL shorter and it works:
But from browser, the link of the image shows:
which can not be displayed. And even I tried to visit:
http://www.domain.com/~abc/pic.jpg
I got a 404 Error.
Here is my .htaccess, Am I wrong with something or missing something?
Options +FollowSymLinks RewriteEngine on RewriteRule ^~(.*)$ /personalpages/personal_space/$1/html/ RewriteRule ^~(.*)$/(.*)$ /personalpages/personal_space/$1/html/$2
Any suggestions? Thanks in advanced.
~
? It seems it is a relevant character in your rules. – Felipe Alameda A