merhabalar. kendi sitemden detay.php sayfasına bir url yönlendrimem var. Bu yönlendirmenin yani url'in sonunda "/" koyarsam beni index.php ye yönlendiriyor.
Ne yaparsam beni index.php ye yönlendirmemesini sağlayabilirim.
Htacces kodum.
RewriteEngine onRewriteCond %{HTTP_HOST} ^localhost/ [NC]RewriteRule ^(.*)$ http://localhost/$1 [L,R=301,NC]RewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME}\.php -fRewriteRule ^(.*)$ $1.phpRewriteRule ^([^/_.]+)$ detay.php?url=$1 [L,QSA] (#BU SATIR #BU SATIR)RewriteRule ^sayfa/([^/_.]+)$ index.php?page=$1 [L,QSA]#404 hata sayfası yönlendirme koduErrorDocument 404 http://localhost/<IfModule mod_security.c>SecFilterEngine OffSecFilterScanPOST On</IfModule>


