1

我正在尝试重写我的 URL 并遇到严重问题。我在 Godaddy linux 托管服务器上,它没有任何类型的配置文件或 .htaccess 文件。我使用以下重写信息创建了自己的 .htaccess 文件,但我不知道该怎么做:

RewriteEngine On
RewriteRule ^NSN/([^/]*)\.html$ /nsn.php?NSN=$1 [L]

Godaddy 的人告诉我,我可以使用 URL 重定向来帮助解决这个问题,但我什至不确定这意味着什么。

如果有人可以帮助如何完成这项工作的后续步骤,将不胜感激。

谢谢你。

4

1 回答 1

0

Rewriting URLs is mapping the URL you see in the browser from the default to something more meaningful or memorable. The simplest example is something like this:

# Replace all html references with php
RewriteRule html php

A testing tool will save time, and understanding how to use aliases or redirects to avoid regular expressions may be helpful.

于 2012-08-31T01:24:22.180 回答