如果是诸如ASP.net,ASP等动态网页,那不能配置到apache中(虽然有一些方案可以实现在apache解析asp,但在windows中强烈建议不要这么做)。
如果您想在 Apache 服务器上使用 .htaccess 文件来实现类似的 URL 重写,则需要使用 Apache 的 mod_rewrite 模块。根据您给出的规则,您可以使用以下 .htaccess 规则来替换它:
RewriteEngine On
RewriteBase /
RewriteRule ^(./)tag/([a-z0-9]+)/?(.)$ $1/e/tags/itag.php?tagid=$2 [QSA,L]
RewriteRule ^(./)tag/list_([0-9]+)?(.)$ $1/e/tags/itaglist.php?cid=$2 [QSA,L]
RewriteRule ^(./)tags/?(.)$ $1/e/tags/alltags.php [QSA,L]
RewriteRule ^(./)tags-(.)-(.)?(.)$ $1/e/tags/alltags.php?cid=$2&page=$3 [QSA,L]
请注意,上述规则假定您想将所有请求重定向到指定的文件。您可能需要根据您的具体需要进行一些修改。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)