htaccess ile sayfa varsayılan basit bir yönlendirme

0 Cevap php

The htaccess file requires an entry at the end of /folder/ to redirect the page

example:
http://www.server.com/folder/"some-page-name"

If no page is defined as, then I want it to be "index" by default

htacess

RewriteBase /folder/
RewriteRule ^(.*)$ subfolder/index.php/?page=$1 [L]

0 Cevap