0

好的,我有一个链接http://www.cuadmemo.com/posts.php?id=2861并希望它像这样显示 http://www.cuadmemo.com/2861 我在 .htaccess 文件中有这个。

RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$  posts.php?id=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$  posts.php?id=$1

我尝试了许多不同的解决方案,我在这个网站上读到过,但到目前为止似乎没有一个有效。任何解决此问题的建议将不胜感激。

4

1 回答 1

1
RewriteEngine On
RewriteBase /

# Make sure we don't rewrite directories and existing files        
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9_-]+)/?$ posts.php?id=$1 [L]
于 2013-02-26T20:44:52.617 回答