I have the following url
/int/FULL-DEC18-100-F899139DF5E1059396431415E770C6DD.pdf
And I need to rewrite it to this
/int/index.php?$1
I have this
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} int
RewriteRule ^int/(.*) /int/index.php [NC,L]
Code (markup):
Any idea what I am doing wrong?
from Programming http://bit.ly/2v0Z1p7
via IFTTT

0 Comments