元のURLです
http://localhost/naranjeshaltd/index.php?url=home
そして私はそれをにリダイレクトしたい
http://localhost/naranjeshaltd/home
このhtaccessコードを試しましたが、ページをリダイレクトしていますhttp://localhost/xampp
Options +FollowSymLinks
RewriteEngine on
RewriteBase /naranjeshaltd
RewriteRule ^(.*)$ /index.php?url=$1 [L]
しかし、このhtaccessコードを使用すると、すべて正常に動作します
Options +FollowSymLinks
RewriteEngine on
RewriteBase /naranjeshaltd
RewriteRule home$ index.php?url=home
これは静的メソッドですが、すべてのページでこれを行うにはどうすればよいですか?