I hope I am writing this question at right place.
I also google my question or may I actually not exactly know how to google my problem.
I will little describe my issue it may help someone to understand.
I download html pages from a web server and these are in large number. In each html page in image or link there is “/”
for examples
<img src="/newimage.jpg" /> and <a href="/myfile.html">file</a>
so when I need properly working I have to need to remove “/” from each img and a .
I also find that it has .htaccess file I think this thing can be handle from here but I am not pro in it and even not exactly know how make search query for my issue.
Please help me out if you can know anything about my issue.
Thanks in advance.
**Update:**
I am sorry If I cannot elaborate my question properly.
I am giving you another example
In my html pages the the css path is give like this:
<link href="/style.css" rel="stylesheet" type="text/css" />
And it will not working for me I have to edit it and will make it like this
<link href="style.css" rel="stylesheet" type="text/css" />
You can see that I only remove “/” from style.css and it will now working for me, in all html all urls are same like this.
I know this is .htaccess issue but not know how to search this or how to do this.
@unor give me idea to have a try for virtual host. After putting all my code in sub-domain it is now working perfectly. So the main issue was the code in main domain not .htaccess.
Thanks you all guys for help me out.