Aldığım bir scriptte .htaccess dosyası var
ben şu anda ufak bir script kullanmak istiyorum www.siteadi.com/prg içerisinde fakat www.siteadi.com/prg yazdığımda sayfa bulunamadı hatası alıyorum bu klasör ve içeriği için bunu nasıl geçebiliriz?
# Mod_Autoindex
<IfModule mod_autoindex.c>
    # Disable Indexes
    Options -Indexes
</IfModule>
# Mod_Rewrite
<IfModule mod_rewrite.c>
    # Enable symlinks
    Options +FollowSymlinks
    # Enable mod_rewrite
    RewriteEngine On
    
    # Frontend redirect
    RewriteCond %{REQUEST_URI} !^public
    RewriteRule ^(.*)$ web/$1 [L]
</IfModule>