私のURLをきれいにする助けが必要です。 私はURLのようなを生成するPHPスクリプトを持っている:.htaccess URL書き換えヘルプが必要
現在http://example.com/index.php?a=profile&u=simon
私はそれのほとんどをきれい.htaccess
を持って
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule^- [L]
RewriteRule ^welcome/([^/]+)/?$ index.php?a=welcome&filter=$1 [NC,QSA,L]
RewriteRule ^explore/([^/]+)/?$ index.php?a=explore&filter=$1 [NC,QSA,L]
RewriteRule ^profile/([^/]+)/?$ index.php?a=profile&filter=$1 [NC,QSA,L]
RewriteRule ^page/([^/]+)/?$ index.php?a=page&filter=$1 [NC,QSA,L]
RewriteRule ^(([^/]+)+)(/([^/]{0,32})(/.+)?)?$ index.php?a=$1&q=$3 [L,QSA]
これらのルールに前のリンクは次のようになります。
http://example.com/profile&u=simon
これを達成する方法はありますか?
http://example.com/simon
@anubhavaを= YES、私は '/ simon'や' /プロファイルこれらの2つのソリューションの1を達成したい/ simon'サイモンがあります変数のユーザ名 – NineCattoRules
しかし、あなたはすでに '/ profile/simon'を扱うルールを持っています – anubhava
@anubhavaありがとう、基本的に私はPHPの中で調整するものを持っています – NineCattoRules