I have a site in localhost/gallery/ folder. I want to make this: - when I write localhost/gallery/12 real addres whic is open to be localhost/gallery/index.php?url=12 I tried to made it but unfortunately it doesn't work. Return error 310 (ERR_TOO_MANY_REDIRECTS).
AddDefaultCharset UTF-8
Options +FollowSymlinks -Indexes
RewriteEngine On
RewriteCond %{THE_REQUEST} /index\.(php|html)\ HTTP/
RewriteRule ^index\.(php|html)$ / [R=301,L]
RewriteRule ^(.*)$ http://localhost/gallery/$1 [R=301,L]
RewriteBase /
RewriteRule ^([^.]+)$ index.php?url=$1 [L,NC,QSA]