我对 .htaaccess 文件有疑问。我正在尝试将 url 转换www.example.com/news/2
为www.example.com/index.php?news=$1
. 到目前为止,我已经尝试过:
RewriteRule ^news/([0-9]+)/?$ /index.php?news=$1 [NC,L]
这会导致我出错,因为它会尝试查找所有来源,例如:www.example.com/news/styles.css
等。有什么问题?hta 文件位于根目录中。
我对 .htaaccess 文件有疑问。我正在尝试将 url 转换www.example.com/news/2
为www.example.com/index.php?news=$1
. 到目前为止,我已经尝试过:
RewriteRule ^news/([0-9]+)/?$ /index.php?news=$1 [NC,L]
这会导致我出错,因为它会尝试查找所有来源,例如:www.example.com/news/styles.css
等。有什么问题?hta 文件位于根目录中。