Apache ve mod_rewrite ile oldukça URL'leri ile PHP kullanıyorum.
I have an index.php
where I include some other .php files that contain the content.
Now I'd like to prevent people from viewing those (content only) .php files, unless they are included via my index.php
script of course.
This is the RewriteRule I'm using:
RewriteRule ^/?([a-zA-Z0-9/-]+)/?$ /index.php [NC,L]
Bu istekleri işlenir ve içeriği buna dahildir index.php her isteğini yeniden yazar.
mod_rewrite
, yani bu yapmak için bir yolu var mı benim .htaccess
? Genellikle. Php dosyalara erişimi veya böyle bir şey inkar etmek?
Teşekkürler!