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.
我当前的网址是
我想将我的网址显示为
我使用下面的代码,但它不 woking
RewriteEngine On RewriteRule ^post/(.*) /post.php?postid=$1
我认为这是因为重写引擎正在寻找:
而不是寻找:
尝试添加:
RewriteBase /b2b/
在重写规则之前。
删除/之前的post.php?. 所以你的代码应该是:
/
post.php?
RewriteEngine On RewriteRule ^post/(.*) post.php?postid=$1