.htaccess文件名到url

时间:2016-10-10 10:47:12

标签: php apache .htaccess mod-rewrite

我一直在搜索,找不到符合我需要的答案。我认为这是一个相当简单的问题。

重点是我需要将我的文件重写为我喜欢的名字。例如我有'www.mydomain.com/account_index.php',我想重写为www.mydomain.com/account

到目前为止,我有这个,但这似乎不适用于多行。

Rewriteengine on
rewriterule ^support account_ticket.php [L]
rewriterule ^account account_index.php [L]

所以简而言之,我希望我的网站将/ account重定向到account_index.php,反之亦然。

提前致谢!

1 个答案:

答案 0 :(得分:1)

我找到了那些想知道的答案。 我必须在每RewriteCond之前加RewriteRule

所以如果我想去www.mydomain.com/account。我有这个:

RewriteCond %{REQUEST_URI} ^/account$ [NC]
RewriteRule ^account account_index.php [NC,L]

这意味着/ account现已链接到account_index.php。

度过美好的一天!