リンクに値がない場合は、index.phpにリダイレクトしてください。どうすればinstagramのような.htaccessでURLをリダイレクトできますか?
Example;
www.mydomain.com/ --> index.php
リンクがwww.example.com/post/valueの場合、post.phpにリダイレクトします。
Example;
www.mydomain.com/post/cDfS58Q --> post.php
リンクが値のみで構成される場合は、profile.phpにリダイレクトします。
Example;
www.mydomain.com/jhon.34 --> profile.php
私のテスト:
RewriteRule ^post/([0-9a-zA-Z-_/.]+)$ post.php?$1 [QSA,L]
RewriteRule ^([0-9a-zA-Z-_/.]+)$ profile.php?$1 [QSA,L]
それらはすべてpost.phpに行きます。
友人はいません – developer
あなたの '.htaccess'ファイルの場所はどこですか? 'www.mydomain.com'の' public_html'ディレクトリにありますか? – Ivan86
localhost/www/.htaccess – developer