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:
www.mysite.com/author/username
通过这个
www.mysite.com/username
请考虑人们应该能够使用这两个 url 访问,并且“用户名”总是根据用户而变化。
最好的方法是什么?htaccess 重写?
感谢您的时间!
如果您的用户创建的名称与与现有或未来路径重叠的路径相匹配,似乎它可能会变得混乱并让您陷入困境。
RewriteCond %{REQUEST_URI} ^/[a-z]+$ #1 RewriteCond %{REQUEST_FILENAME} !-f #2 RewriteRule ^/([a-z]+)$ /author/$1 [P] #3