使用阿拉伯语而不是英语设置 URL 格式

发布于 2024-10-21 09:18:50 字数 285 浏览 0 评论 0原文

我有这种格式的链接:

http://site.com/news/view/1.html

我想将其更改为:

http://site.com/خبر/عنوان-الخبر

其中“新闻”

和“新闻”页面的标题相同,

我想通过 .htaccess 进行操作,同时我想通过重定向保存旧网址301

,我想知道我是否需要在 php 文件中对新闻进行任何编辑?

问候,

i have link with this format :

http://site.com/news/view/1.html

i want change it to :

http://site.com/خبر/عنوان-الخبر

which خبر is equal "news"

and "عنوان-الخبر" equal title of news page

i want do it by .htaccess and at the same time i want save old urls by redirect it by 301

and i want know if i need to do any edits in php files for news ?

Regardes ,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如此安好 2024-10-28 09:18:50

这取决于当前如何设置逻辑脚本来处理 URL。如果您使用 preg_match 或其他方式从 $_GET 之外的 URL 获取数据,则必须将这些变量更改为 $_GET,因为您将通过 .htaccess RewriteRule 传递该信息。

This depends how your logic scripts are currently set up to handle your URL's. If you're using a preg_match or some other way to get the data from the URL other than $_GET you'll have to change those variables to $_GET as you will be passing that information via the .htaccess RewriteRule.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文