I'm trying to include a image on my INDEX.php page but my HTACCESS blocks it when i visit the image by entering the url in the adress bar it shows a empty page
The link i'm trying to get the image from is http://127.0.0.1/ase/ts/
when i visit http://127.0.0.1/ase/ts/help.gif
the page is loading slowly and not showing anything at all only a white page.
I cant get files at all from a /ASE/{SUBDIRECTORY}/
My .HTACCESS file for the /ASE
directory
RewriteEngine On
RewriteRule ^(|/)$ index.php?url=$1
RewriteRule ^([a-zA-Z0-9_-]+)(|/)$ index.php?url=$1
RewriteRule ^([^/]+)/([^/]+)$ index.php?url=$1&page=$2 [NC,L]
RewriteRule ^(.*)\.htm$ $1.php [NC]
I think its because of this rule.
RewriteRule ^([^/]+)/([^/]+)$ index.php?url=$1&page=$2 [NC,L]
I am rewriting 127.0.0.1/ase/index.php?url=dash
to 127.0.0.1/ase/dash
and 127.0.0.1/ase/index.php?url=cmdlogs?p=1
to 127.0.0.1/ase/cmdlogs/1