使用阿拉伯语而不是英语设置 URL 格式
我有这种格式的链接:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于当前如何设置逻辑脚本来处理 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.