Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のようなURLを持っています
localhost/myapp/index.php?mod=user&page=createuser
URLを次のようにします
localhost/user/createuser
htaccessファイルでこれを行うにはどうすればよいですか?
RewriteEngine On RewriteRule ^([^/]*)/([^/]*)$ /myapp/index.php?mod=$1&page=$2 [L]
これを試して
RewriteEngine on RewriteRule ^myapp/(.+)/(.*) myapp/index.php?mod=$1&page=$2 [L]